Image1= new Image(1300,1733)
Image1.src = "/images/home_icon_over.png"		
jQuery(document).ready(function() {

    jQuery("a.nav_link").hover(function() {
		jQuery(this).stop().animate({ paddingLeft: "30px" }, 200);
    },function(){
        jQuery(this).stop().animate({ paddingLeft: "20px" }, 200);
    });
});
