$(document).ready(function()
{
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	//When mouse rolls over and out of green
	$("ul.smoothMenu li.mainBtn").mouseover(function(){			$(this).stop().animate({height:'500px'},	{queue:false, duration:1500, easing: 'easeOutCubic'}) 	});
	$("ul.smoothMenu li.mainBtn").mouseout(function(){			$(this).stop().animate({height:'100px'},		{queue:false, duration:800, easing: 'easeOutCubic'})	});
	


});
