// JavaScript Document

$(document).ready(function() {						  


// rollover animation on menu

$("#navMenu li").hover(function(){
		$(this).addClass("menu");
        $(this).animate({opacity: 0.75}, 1000);
        },
        function(){
		$(this).removeClass("menu");
        $(this).animate({opacity: 1}, 1000);
    });

 // attempt to get rid of dotted lines on a

$('a').click(function() {
  this.blur();
});

  
 // track descriptions on album page
 
	//hide track_desc after the first one
	$(".track_container .track_desc").hide();
	
	
	//toggle area_toggle
	$(".area_toggle").click(function(){
		$(this).next(".track_desc").slideToggle(500);
		
		return false;
	});

	$('div.youtube').imghover();
	    
  
});


