$(document).ready(function(){					   
    $("body").fadeIn(1200);
	$("a[href!=#]").not("[href^=mailto]").not("a[target=_blank]").not(".highslide").click(function(event){
		  event.preventDefault();
		  if (this.href=="javascript:void(0);") {
			  return false; }
		  $("#banner-object").hide();
		  $("body").fadeOut(400, redirectPage(this.href));
		  return false;
	  });
	  function redirectPage(url) {window.location = url;}
});
