window.addEvent("domready",initTemplate);
function confirmDelete(){
	if(confirm("Are you sure you wish to delete this item?")){
		return true;
	} else {
		return false;
	}
}
function initTemplate(){
	makePopUp("children");
	makePopUp("students");
	makePopUp("adults");
	makePopUp("creative");
	
	
	myCountdown = new ocCountdown('countdown', SecondsRemaining);
	//$('countdown').innerHTML = "COMING SOON";
	
	//temporarily kill all internet campus links
	/*$each($$('a'),function(thisItem,thisIndex){
		if(thisItem.href == "http://internet.newlifechurch.tv/"){
			thisItem.href = "icampus-soon.php";
			thisItem.rel = "lightbox[set 430 100]";
			//thisItem.onclick = function(){return false;};
		}
	});*/
}
function ToggleLocations(evt){
	//alert($('locationbar').getStyle('top'));
	objBody = $$('body')[0];
	if($('locationbar').getStyle('top') == "-140px"){
		$('locationbar').tween('top',"0px");
		$('content').tween('top',"160px");
		objBody.tween('backgroundPosition', '0px 140px');
	} else {
		$('locationbar').tween('top',"-140px");
		$('content').tween('top',"10px");
		objBody.tween('backgroundPosition', '0px 0px');
	}
	return false;
}
function submitedit(){
	$('xhtml1').value = $('editor1').value;
}

