splashTV = function () {
	var start = new Date(2008,7,29,10,00);
	var end = new Date(2008,7,29,12,00);
	var now = new Date();	
	var cookie = jQuery.cookie('splashtv_1'), runmodal = false;
	
	if (!cookie)
	 	runmodal = true;
		

	jQuery(document).splashBox({
		event: 'splashtv'
		, href : 'html/webtv-info.html'
		, iframe: true
		, width: 478
		, height: 300
		, overlay: true
	});
	
	
	if (start < now && end > now && runmodal ) {
		jQuery(document).trigger("splashtv");
		jQuery.cookie("splashtv",true,{expires: 7, path: '/'});
		
	}
}

jQuery(function(){
	splashTV();
});