/* CodePunk JavaScript */

//image preloading
pic1 = new Image();pic1.src="menuline.png";


		function popmenu(menu){
		if (document.getElementById){
		document.getElementById(menu).style.visibility = "visible";}//ends IF

else{document[menu].visibility = "visible";}
		}//ends function
		
		//SHUT MENUS
	function shut(menuname){
	if (document.getElementById){
		document.getElementById(menuname).style.visibility = "hidden";}//ends IF

else{document[menuname].visibility = "hidden";}
		}//ends function
	
		
		
		
	
