$(function() {
	
	$('#singleDownload').hover(function(){
		//$(this).find('li').animate({left:'-236px'},{queue:false,duration:500});
		//$(this).find('li').each(function() { 
		//	$(this).animate({left:'-236px'},{queue:false,duration:500}) 
		//} ) ;
		$(this).find('#coverInfo').animate({left:'-236px'},{queue:false,duration:500});
	}, function(){
		//$(this).find('li').animate({left:'-10px'},{queue:false,duration:500});
		//$(this).find('li').each(function() { 
		//	$(this).animate({left:'-10px'},{queue:false,duration:500}) 
		//} ) ;
		$(this).find('#coverInfo').animate({left:'0px'},{queue:false,duration:500});
	});
	
	$('#cover img, #download').click(function(e) {
		e.preventDefault();  //stop the browser from following
		window.location.href = 'music/Germanov-Sche(2011).zip';
	});
	/* $('#coverInfo').click(function() {
		event.stopPropagation();
	}); */
}); 
