$(document).ready(function(){
	$('#logo').css('paddingLeft', '0px').hover(
		function(){
			$(this).stop().animate({ paddingLeft: '10px' }, 200);
		},
		function(){
			$(this).stop().animate({ paddingLeft: '0px' }, 200);
		}
	);
	
	/*$('*').css('lineHeight', '18px').hover(
			function(){
				$(this).stop().animate({ lineHeight: '5px' }, 200);
			},
			function(){
				$(this).stop().animate({ lineHeight: '18px' }, 200);
			}
	);*/
});
