var NAV_currentid = "";
var NAV_speed = 300;

function switchNavigationTo(parentid){	

	if (NAV_currentid == parentid) return; //filters out some of the flickering 

	ident=parentid.split("_");	
	$(".sectionlevelnav").hide(NAV_speed);
	$("#section_" + ident[1]).show(NAV_speed);

	NAV_currentid = parentid;
	//alert(parentid);
}

/* homepage form page switcher */
$(document).ready(  function(){
	$(".topage1").click(  function(){		
		$(".page1").show();
		$(".page2").hide();
		$(".page3").hide();			
		return false;
	});
	$(".topage2").click(  function(){
		if (validatePage1())
		{
			$(".page1").hide();
			$(".page2").show();
			$(".page3").hide();
		}
		return false;	
	});
	$(".topage3").click(  function(){
		if (validatePage2())
		{
			$(".page1").hide();
			$(".page2").hide();
			$(".page3").show();
		}
		return false;
	});

});