Image1= new Image(1300,1733)
Image1.src = "/images/home_icon_over.png"
jQuery(document).ready(function() {
//    jQuery("select").select_skin();
	
	jQuery(".wrapper").hide().css({visibility: "visible"}).fadeIn(2000);
	jQuery("a").not("a[target='_blank']").not("a[class='print']").not("a[class='thumb']").not("a[class='']").not(".addthis_toolbox a").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		jQuery(".wrapper").fadeOut(1000, redirectPage, function() {
			$(this).show().css({visibility: "hidden"});
		});

	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	

    jQuery("a.nav_link").hover(function() {
		jQuery(this).stop().animate({ paddingLeft: "30px" }, 200);
    },function(){
        jQuery(this).stop().animate({ paddingLeft: "20px" }, 200);
    });
});
