/*// Prototype Nav 

var what = "";

$(document).ready( function(){
	// click on a level 1 link to show the applicable level 2 links
	//$("#lvl1 a").each(function(){ 
	//	$(this).mouseover(clearLvl3); });
	
	
	// hover over a level 2 link to make the dropdown appear	
	$("a.lvl2-link").each(function(){ 
		$(this).mouseover(showLvl3); });
});

function clearLvl3(){
	$(".lvl3").hide();
}

function showLvl2(){
	
	// hide any currently visible level 2/3 navs
	$(".lvl2").hide();
	$(".lvl3").hide();
	
	what = $(this).attr("class"); // determine the name of what we want to show
	
	$("#lvl2-"+what).show(); // show the lvl2 nav 
}


function showLvl3(){
	/*
	$(".lvl3").hide(); // hide any other lvl3s currently visible
	what = $(this).attr("class").split(" ")[0]; // determine the name of what we want to see
	
	$("#lvl3-"+what).show();
	
	// kind of hidden functionality, when you click on a dropdown menu it can slide up
	$("#lvl3-"+what).click(function(){ $(this).slideUp(); });
		
	// hides the drop-down menu, because for some reason .mouseout doesn't work AT ALL. 
	$("ul#lvl3-"+what).hover( function(){ }, function(){ $(this).hide(); } ); 
}*/

// Give it an ID and it will show the level 2 for that thinger. s
function forceLvl2(name){
	$("#"+name).show();
}