$(function() {
	$('#menu li')
		.not('#home #lHome, #about #lAbout, #devign #lDevign, #service #lService, #contact #lContact')
		.css({
			'background-image' : 'url(/img/menustates.png)',
			'background-position' : '-190px -45px'
		})
		.hover(
			function() {
				var $pos = '-190px -90px'; if($(this).attr('id') == 'lHome'){$pos = '-195px -90px';}
			
				$(this).add($(this).find('*')).stop();
			
				$(this)
					.animate({'background-position' : $pos},250)
					.find('a').animate({'padding-top' : '0px'}, 250)
					.find('small').slideDown(250);
			},
			function() {
				var $pos = '-190px -45px'; if($(this).attr('id') == 'lHome'){$pos = '-195px -45px';}
				
				$(this).add($(this).find('*')).stop();
				
				$(this)
					.animate({'background-position' : $pos},250)
					.find('a').animate({'padding-top' : '12px'}, 250)
					.find('small').animate(
						{height : "hide"},
						{duration : 250,
						queue: false,
						complete: function() {
							$(this).css({"height" : "auto"});
						}});
			}
		)
		.find('a').css({'padding-top' : '12px'})
		.find('small').hide();
	
	$('#lHome').not('#home #lHome').css({'background-position' : '-195px -45px'});
});
