jQuery(document).ready(function() { 
var $j = jQuery.noConflict(); 
$j("#logoandnav li a").hover(function() {
	$j(this).stop().animate({paddingLeft : "40px"},200);
},function() {
	$j(this).stop().animate({paddingLeft : "0px"},200);
});
$j(".current-menu-item a").hover(function() {
	$j(this).stop();
});
});

