	var now 	= new Date();
	var hour 	= now.getHours();
    var host    = document.location.host;
    host        = host.toLowerCase();
    var ss      = host.split(".");
    host        = ss[1];
	if (hour<9 && host == "sportsbl")
	{
		var url			= document.location.href;
		var reg			= /sportsbl/g;
		var reurl		= url.replace(reg,"sportbl");
		location.href	= reurl;
	}

