

   function CurrentPage(id) {

	//if first vist ID is null
	//set ID to home page
	if( id == null ) { id = "home"; }

	if( id == "home"	) { var mytab = "tab1"; }
	if( id == "about"	) { var mytab = "tab2"; }
	if( id == "staff"	) { var mytab = "tab3"; }
	if( id == "arrange"	) { var mytab = "tab4"; }
	if( id == "bar"		) { var mytab = "tab5"; }
	if( id == "gallery"	) { var mytab = "tab6"; }
	if( id == "contact"	) { var mytab = "tab7"; }

	document.getElementById(mytab).style.color		= '#900';
	document.getElementById(mytab).style.padding		= '12px 0px 0px 0px';
	document.getElementById(mytab).style.background		= 'URL(images/tab_active.gif)';
	document.getElementById(mytab).style.backgroundRepeat	= 'no-repeat';
	return;

   }

   function onTab(id,page) {
	if( document.getElementById(page).style.display == 'block' ) { return false; }
	document.getElementById(id).style.color			= '#ff3';
	document.getElementById(id).style.padding		= '7px 0px 0px 0px';
	document.getElementById(id).style.background		= 'URL(images/tab_hover.gif)';
	document.getElementById(id).style.backgroundRepeat	= 'no-repeat';
   }

   function offTab(id,page) {
	if( document.getElementById(page).style.display == 'block' ) { return false; }
	document.getElementById(id).style.color			= '#fff';
	document.getElementById(id).style.padding		= '12px 0px 0px 0px';
	document.getElementById(id).style.background		= 'URL(images/tab.gif)';
	document.getElementById(id).style.backgroundRepeat	= 'no-repeat';
   }
