$(document).ready(function(){
$("a").hover(function(){
	$("a[href='"+$(this).attr('href')+"']").addClass("on");//animate({left:"+=100"}, "slow");
	},function() {
	$("a[href='"+$(this).attr('href')+"']").removeClass("on");//animate({left:"+=100"}, "slow");
});

});
