// jQuery settings
$(document).ready(function() { 
 
	$("#provisional").hide();
	// set dialog boxes
	// from: http://colorpowered.com/colorbox/core/example3/index.html
	$("#openxpo,#openbe,#openbe2").colorbox({speed:"1000", opacity:"0.75", width:"90%", height:"90%", iframe:true});
	$("#openunaffiliated,#openaffiliated,.openpdf,#opentimetable").colorbox({speed:"1000", opacity:"0.75", width:800, height:550, iframe:true});
	$(".openword").colorbox({speed:"1000", opacity:"0.75", width:150, height:50, iframe:true});
	$("#opentimings,#openresults").colorbox({speed:"1000", opacity:"0.75", width:800, height:550, iframe:true});
	$("#opengoogle,.opensponsor").colorbox({speed:"1000", opacity:"0.75", width:840, height:590, iframe:true});
	$(".sponsordialog").colorbox({speed:"1000", opacity:"0.75", width:"90%", height:"90%", iframe:true});
	//$("#provisional_opener").colorbox({speed:"1000", opacity:"0.75", width:550, height:325, inline:true, href:"#provisional"});

	// set sponsor rotator
	// from: http://jquery.malsup.com/cycle/
	try{
		$('#sponsor').cycle({ 
			fx:     'turnDown', 
			easing: 'bounceout', 
			delay:  3000,
			pause: true
		});
	} catch(e){}

	// google map code
	var flag=true; // map load indicator
	if(flag){
		flag=false; // only load map once
		try {
			loadGMap(); // load map if container is available
		}
		catch(e){}
	}

});

function closeCurrentBox() {
	$.fn.colorbox.close();	
}

