$(document).ready(function(){
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	//When mouse rolls over
	$("#top-menu > .item").mouseover(function(){
		$(this).stop().animate({top:'70px',height: '100px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	//When mouse is removed
	$("#top-menu > .item").mouseout(function(){
		$(this).stop().animate({top:'150px',height:'16px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	
});
