$(document).ready(function(){
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	//When mouse rolls over 1
	$("#subheader1 ul.menu li.notSelected").mouseover(function(){
		$(this).stop().animate({height:'45',paddingTop:'25'},{queue:false, duration:600, easing: 'swing'});
	});
	//When mouse is removed 1 
	$("#subheader1 ul.menu li.notSelected").mouseout(function(){
		$(this).stop().animate({height:'48',paddingTop:'2'},{queue:false, duration:600, easing: 'swing'});
	});
	//When mouse rolls over 2
	$("#subheader1 ul.products li.notSelected").mouseover(function(){
		$(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'swing'})
	});
	//When mouse is removed 2 
	$("#subheader1 ul.products li.notSelected").mouseout(function(){
		$(this).stop().animate({height:'35px'},{queue:false, duration:600, easing: 'swing'})
	});	
});
