$(document).ready(function() {
	
	$('#menu a').hover(
		function() {
			if (!$(this).hasClass('selected')) {			
				$(this).stop().animate({
					lineHeight: '48px',
					marginTop: '0px'
				}, {queue:false,duration:200}).css('color', '#000000');
			}
		}, function() {
			if (!$(this).hasClass('selected')) {
				$(this).stop().animate({
					lineHeight: '20px',
					marginTop: '14px'
				}, {queue:false,duration:100}).css('color', '#FFFFFF');
			}
		});
	
});