
jQuery(function($) {

/* CSS3 */ 


/* Menu Hover */

$(".item a").hover(function(){
	$(this).stop().animate({
		paddingLeft: "5px"
			}, 150);
}, function(){
	$(this).stop().animate({
		paddingLeft: "0px"
			}, 100);
});



});


