	function toggleSub(submenu) 
		{
			if (document.getElementById(submenu).style.display == 'none') 
			{
				document.getElementById(submenu).style.display = 'block'
			} 
			else 
			{
				document.getElementById(submenu).style.display = 'none'
			}
		}
	
	function disclaimer() 
		{
			day = new Date();
			id = day.getTime();
			eval("page" + id + " = window.open('http://www.dalbeyeducation.com/disclaimer.html', '" + id + "','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=290,height=380');");
		}


/* Side Bar Rotate */
 $(document).ready(
	function(){
		$('ul.eventBox').innerfade({
			speed: 1000,
			timeout: 16000,
			type: 'random_start',
			containerheight: '312px'
		});
	});
		
/* Clickable Blocks */	
	// Post archives
	$(document).ready(function(){
	
		$(".archives li").click(function(){
		  window.location=$(this).find("a").attr("href"); return false;
		});
	
	});
	$(document).ready(function(){
	
		$(".indexMapBox div").click(function(){
		  window.location=$(this).find("a").attr("href"); return false;
		});
	
	});
	// Event Sidebar
/*	$(document).ready(function(){
	
		$(".eventBox li").click(function(){
		  window.location=$(this).find("a").attr("href"); return false;
		});
	
	}); */