function showMusic(){
	jQuery("#musicbox").toggle("slow");
	return false;
}
function hideLamp(){
	jQuery("body").toggleClass("lightsOut");
	if(jQuery("body").hasClass("lightsOut")){
		jQuery("#content").animate({width: "76%"}, "slow");
	}else{
		jQuery("#content").animate({width: "52%"}, "slow");
	}
	return false;
}

function hideYingYang(){
	jQuery("body").toggleClass("yingYang");
	return false;
}