/**
 * @author Gizmo
 */

function fillHeadlines () {
	jQuery("#headline1").html (congressData.bannertitel1);
	jQuery("#headline2").html (congressData.bannertitel2);
	jQuery("#headline3").html (congressData.bannertitel3);
	//jQuery("#webpagetitle").html (congressData.bannertitel1 + " - " + congressData.bannertitel2);
	document.title = congressData.bannertitel1 + " - " + congressData.bannertitel2;
}

function fillHelpLink () {
    jQuery("#helplink").bind("click", function(){ 
		// it is absolutely not nice to have this hardcoded
		// but I'm tired and it's just for the demo tomorrow
		// TODO: Change this properly
		tb_show("Do you require assistance?", "assets/en_real.php"+ "?KeepThis=true&TB_iframe=true&modal=false&width=600&height=500", false);	    
	});
}

var ovwTimer = "";

/**
 * starts the Timer for the overviewPage, that calls 
 */
function startTimer() {
	//xajax_update_live_overview();
	//ovwTimer = setInterval(xajax_update_live_overview, overviewData.updateFrequency * 1000);
}
