/*
* this call is made here to avoid having to use jquery.ready or document.ready event handlers. they sometimes don't fire
* if there is an element in the page that doesn't load.
*/
function initPage(){
	sportsnetPage.executeInit();
}

if ($.browser.msie) {
	//timer for ie 6/7 - both crash when we append elements before the DOM is completely parsed
	setTimeout( initPage, 50);
} else {
	initPage();
}