$(function() {
	$('.topnav').hover(function(){
		$(this).animate({top:'30px'},{queue:false,duration:500});
	}, function(){
		$(this).animate({top:'162px'},{queue:false,duration:500});
	});
});
