jQuery(document).ready(function () {
jQuery("body").css("display", "none");
jQuery("body").fadeIn(2000);
jQuery("a").click(function (event) {
event.preventDefault();
linkLocation = this.href;
jQuery("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
jQuery(document).ready(function () {
jQuery("body").css("display", "none");
jQuery("body").fadeIn(2000);
jQuery("a:not(.test1, .test2)").click(function (event) {
event.preventDefault();
linkLocation = this.href;
jQuery("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});