function Init(){
	if(typeof correctPNG == 'function') {
		correctPNG();
	}
	InitQuestionPopUp();
	InitRefresh();
}

/////////////////////////////////////////
// News Ticker Tape
/////////////////////////////////////////

$(function(){
	$('#tickerTape').tickerTape({speed : 60});
});


//////////////////////////////////////
// Question and Answer Pop Up
//////////////////////////////////////

function InitQuestionPopUp(){
	$('.questionBtn a').click(function () {
		return toggleElement(this);
	});
	
	$('.popUpTop a').click(function () {
		return toggleElement(this);
	});
}

function toggleElement(obj){
	$(obj).blur();
	$('#' + obj.rel).toggle();
	return false;
}


//////////////////////////////////////
// Refresh timer to move to next page in the cycle
//////////////////////////////////////

function InitRefresh() {
    // If the generated HTML includes a SetRefresh
    if (typeof SetRefresh == 'function') {
        SetRefresh();
    }
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Init
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

window.onload = Init;
