$(function() {
		   $("ul.subNav li.head h2").bevel();
		   $("form h2").bevel({newColor:'#000'});
		   $("#content ul.navigation li a").bevel({newColor:'#751039'});
		   $("#shop ul.navigation li a").bevel({newColor:'#3c6210'});
		   $("h1.bevel").bevel({newColor:'#fff'});
		   
		   $("ul.subNav li a").hover(function(){
				$(this).stop().animate({paddingLeft:10});
											  },function() {
			   $(this).stop().animate({paddingLeft:0});
		   });
		   
		   $("form.login").formstyle({
							  labelInside: true,
							  passwordText: true
							  });
		   $("form.newsletter").formstyle({ labelInside: true });
		   
		    $("ul.subNav li:last-child").addClass("last-child");
});