$('head').append('<style type="text/css">#fade{display:block;height:' + $(window).height() + 'px}</style>');
function windowFade(){
$('#fade').each(function(){
$('#fade').fadeOut(1000).height($('body').height());
$('a').click(function(){
var url = $(this).attr('href');
if( this.href.match(location.hostname) && $(this).attr("href").charAt(0) != "#" && !$(this).attr("rel") && !$(this).attr("target") ){
var LinkURL = $(this).attr("href");
$('#fade').fadeIn(1000,function(){
location.href = LinkURL;
});
return false;
}
});
});
};
window.onload = function() {
windowFade();
};
window.onunload = function() {
windowFade();
};
