// JavaScript Document


<!--


$(document).ready(function(){
	$('html,body,document').stop().animate({scrollTop:0},200);
	if( navigator.userAgent.match(/iPad/i) != null){
		if(window.innerWidth > 800 ){
		var Wwidth = "1024px";
		var WHeight = "768px";	
		}else{
			 Wwidth = "950px";
			 WHeight = "1200px";
		}
		
	}else{
		Wwidth = "100%";
		 WHeight = "100%";
	}
	$('body').append('<div id="white"></div>');
$("#white").css("width",Wwidth);
$("#white").css("height",WHeight);
$("#white").css("top","0");
$("#white").css("left","0");
$("#white").css("position","fixed");
$("#white").css("background","#0065ad url(images/start-logo.png) center center no-repeat");
$("#white").css("z-index","20000");
	$("#white").delay(1500).animate({opacity:0},2000,function() {  $(this).remove(); });
	
	
	 if( navigator.userAgent.match(/Mobile/i) && 
      navigator.userAgent.match(/Safari/i)
   	 ) {
         document.title = "WVM GB 2010/11";
     }
	
});
