$('head').append('<style type="text/css">#cover{display:block;height:' + $(window).height() + 'px}</style>');
function windowFade(){
	$('#cover').each(function(){
		$('#cover').fadeOut(1000).height($('body').height());
		$('header a, #wrap-columns a, #nav a, #banners a, button, #productlistmain a, .threecolumn a, footer nav a, a.windowFade').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");
				$('#cover').fadeIn(1000,function(){
					location.href = LinkURL;
				});
				return false;
			}
		});
	});
};
window.onload = function() {
	windowFade();
};
window.onunload = function() {
	windowFade();
};
