//<!-- PreLoad Wait - Script -->
//<!-- This script and more from http://www.rainbow.arch.scriptmania.com 

function waitPreloadPage() { //DOM
if (document.getElementById){
document.getElementById('loading').style.visibility='hidden';
 $('#toFadeIn').animate({opacity: 1.0},1000);
}else{
if (document.layers){ //NS4
document.loading.visibility = 'hidden';
 $('#toFadeIn').animate({opacity: 1.0},1000);
}
else { //IE4
document.all.loading.style.visibility = 'hidden';
 $('#toFadeIn').animate({opacity: 1.0},1000);
}
}
}
// End -->
