$(document).ready(function(){
	$(".nav a.animate").hover(function(){
		$(this).animate({textIndent:"35"}, "fast")
	}, function(){
		$(this).animate({textIndent:"15"}, "fast")
	});
});
