function plmovr(k) {
	document.getElementById('tr_playlist_'+k).style.background = 'white';
	document.getElementById('a_title_playlist_'+k).style.color = '#2b3241';
	/*document.getElementById('a_subtitle_playlist_'+k).style.color = '#2b3241';*/
	document.getElementById('img_playlist_'+k).style.border = '1px solid #2b3241';
}

function plmout(k) {
	if (k % 2 == 0) {
		document.getElementById('tr_playlist_'+k).style.background = 'transparent url("./styles/smartcom/imageset/playlist_transparancy2.png")';
	} else {
		document.getElementById('tr_playlist_'+k).style.background = 'transparent url("./styles/smartcom/imageset/playlist_transparancy.png")';
	}
	document.getElementById('a_title_playlist_'+k).style.color = 'white';
	/*document.getElementById('a_subtitle_playlist_'+k).style.color = 'white';*/
	document.getElementById('img_playlist_'+k).style.border = '1px solid #e5e6e7';
}