$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a#toggle").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$(".watershop dl dd").mouseover(function(){
	    $(this).addClass("watershoprollover")
	    $(".watershop dl dd.watershoprollover a").addClass("awatershoprollover")
	});
	
	//When mouse rolls out
	$(".watershop dl dd").mouseout(function(){
	    $(".watershop dl dd.watershoprollover a").removeClass("awatershoprollover")
	    $(this).removeClass("watershoprollover")
	});
	
	//When mouse rolls over
	$("li.menuItem").mouseover(function(){
	    $(this).addClass("menuItemActiveRollover")
		$(this).stop().animate({height:'100px'},'fast')
	});
	
	//When mouse is removed
	$("li.menuItem").mouseout(function(){
	    $(this).removeClass("menuItemActiveRollover");
		$(this).stop().animate({height:'40px'},'fast')
	});
	
	//When mouse rolls over
	$("li.menuItemStormy").mouseover(function(){
	    $(this).addClass("menuItemStormyActiveRollover")
		$(this).stop().animate({height:'75px'},'fast')
	});
	
	//When mouse is removed
	$("li.menuItemStormy").mouseout(function(){
	    $(this).removeClass("menuItemStormyActiveRollover");
		$(this).stop().animate({height:'40px'},'fast')
	});
	
	//When mouse is removed
	$("li.shopitem").mouseout(function(){
		$(this).stop().animate({height:'81px'},'fast')
	});
	
	//When mouse rolls over
	$("li.shopitem").mouseover(function(){
		$(this).stop().animate({height:'150px'},'fast')
	});
});
