// zwija i rozwija playliste
function showLayer() {
	jQuery(document).ready(function(){
		var wys = jQuery("div.right > div#player > div#playerCont").height();
		
		jQuery("div.right > div#player > div#playerCont").animate({
			height: "340px"
		}, 500 );
		
		if(wys == 340) {
			jQuery("div.right > div#player > div#playerCont").animate({
				height: "0px"
			}, 500 );
		}
		
	});
}

function hideLayer() {
	jQuery(document).ready(function(){
		jQuery("div.right > div#player > div#playerCont").animate({
			height: "0px"
		}, 500 );
	});
}