function openDivs(b)
{
	if (b) {
		$("#rightColumnExtend").animate({height:"508px"}, 800,"linear", function(){$("#wrapper").animate({height:"490px", width:"960px"}, 1000, "linear", function(){});} );
		$("#playerContainer").animate({left:"0px", top:"0px"},{queue:false, duration:900});
		var nowPlayingTitleDiv = document.getElementById("nowPlayingTitle");
		nowPlayingTitleDiv.style.display = 'none';
		var nowPlayingDesc = document.getElementById("nowPlayingDesc");
		nowPlayingDesc.style.display = 'none';
	}else
	{
		$("#wrapper").animate({height:"360px",width:"640px"}, 800,"linear", function(){$("#rightColumnExtend").animate({height:"0px"}, 1000, "linear", function(){});} );
		$("#playerContainer").animate({left:"-10px", top:"-10px"},{queue:false, duration:900});
		var nowPlayingTitleDiv = document.getElementById("nowPlayingTitle");
		nowPlayingTitleDiv.style.display = '';
		var nowPlayingDesc = document.getElementById("nowPlayingDesc");
		nowPlayingDesc.style.display = '';
	}
	
}
