// JavaScript Document

	function isIE(){
		if(navigator.appVersion.indexOf("MSIE")<0)
			retVal = false;
		else
			retVal = true;
			
		return retVal;
	}
	
	function stub(){
		alert("Coming Soon!");
	}
	
	function expandCollapse(elemId)
	{
		$("#"+elemId+"Expand").toggle();
		$("#"+elemId+"Collapse").toggle();
		
		
		
		if(isIE()){
			$("#"+elemId+" img").addClass("posRelative");
			$("#"+elemId).toggle();
		}
		else
			$("#"+elemId).slideToggle("slow");
	}
	
	function quickLink(url){
		if(url!="")
			window.location = url;
	}


	function jq_adjustNavTertiaryHeight(){
		
		if($("#contentInteriorContent.noLeftGutter").length=0){
			   $("#contentInteriorContent").height()>$("#navTertiary").height() ? 
			   $("#navTertiary").height($("#contentInteriorContent").height()) : 
			   $("#contentInteriorContent").height($("#navTertiary").height());
		}

	}
	
	function submitComment(){
		document.Comment.submit();
	}

	function redirect(url){
		document.location.replace(url);	
	}
	
	function hideThisElement(id){
		$('#' + id).hide();
	}
	
	
	function launchGame(){
	window.open ("/kidsFun/game/ZKTraining.html",
				 "mywindow",
				 "location=0,status=0,scrollbars=0,resizable=no,width=960,height=600"); 	
}