/*© 2009 William Schurman, Schurman Design. All Rights Reserved.*/

jQuery(function( $ ){
	
	
	$(".music li").children("div.text").animate({opacity:0}, 100);
	
	$(".music li").hover(
	      function(){
		$(this).children("div.text").animate({opacity:1}, 100);
		
		}, 
	      function(){
			$(this).children("div.text").animate({opacity:0}, 100);
		}
	);
	
});


