if ($(window).width() > 480) {
	$('#nav>li')
		.css({backgroundPosition: '0 -100px'})
		.mouseenter(function(){
			$(this).find('a').eq(0).animate(
				{backgroundPosition:'(0 0)'}, 
				{duration:175})
			$(this).find('ul,form')
				.show(175);
		})
		.mouseleave(function(){
			$(this).find('a').eq(0).animate(
				{backgroundPosition:'(0 -100px)'}, 
				{duration:175})
			$(this).find('ul,form')
				.hide(175);
		})
	$('#nav ul>li>a')
		.mouseenter(function(){
			$(this).stop().animate(
				{textIndent:'5px'}, 
				{duration:100})
		})
		.mouseleave(function(){
			$(this).stop().animate(
				{textIndent:'0'}, 
				{duration:100})
		})
}
