/*jQuery('head').append('<style type="text/css">#page-wrap{display:none;}</style>');

jQuery(function(){
	jQuery('#page-wrap').fadeIn(200);
	jQuery('#header a, #home a, #about a, #works a, #media a, #contact a,#post-title a,#works-list a').click(function(){
		var url = jQuery(this).attr("href");
		jQuery('#page-wrap').animate({"opacity":0},200,function(){
			location.href = url;
		});
		return false;
	});
});
*/

jQuery('head').append('<style type="text/css">#page-wrap{visibility:hidden;}</style>');
jQuery(function(){
    jQuery('#page-wrap').after('<div id="fade"></div>');
    if(jQuery.browser.msie && jQuery.browser.version < 7){
        jQuery(window).scroll(function(){
            var top = jQuery(this).scrollTop();
            jQuery('#fade').css('top',top);
        });
    }
    jQuery('#page-wrap').css('visibility','visible');
    jQuery('#fade').fadeOut(200);
    jQuery('#header a, #home a, #about a, #works a, #media a, #contact a,#post-title a,#works-list a').click(function(){
        var url = jQuery(this).attr("href");
        jQuery('#fade').fadeIn(200,function(){
            location.href = url;
        });
        return false;
    });
});
window.onunload=function(){}
