jQuery(function($){

//Call Fancybox on the album image on the release page
	$("a.album-cover").fancybox(); 
 
//Logo opacity
	$('#main').hover(
		function(){
 			$('img#logo').animate({
						opacity:'1' 
 					}, 400);
			
		},
		function(){
 			$('img#logo').animate({
						opacity:'.6' 
						
 					}, 800);
 		}
		
	);

 


 });

