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");
}
function ToggleLocations(evt){
	//alert($('locationbar').getStyle('top'));
	objBody = $$('body')[0];
	if($('locationbar').getStyle('top') == "-365px"){
		$('locationbar').tween('top',"0px");
		$('content').tween('top',"375px");
		objBody.tween('backgroundPosition', '0px 365px');
	} else {
		$('locationbar').tween('top',"-365px");
		$('content').tween('top',"10px");
		objBody.tween('backgroundPosition', '0px 0px');
	}
	return false;
}
function submitedit(){
	$('xhtml1').value = $('editor1').value;
}


