//////////////////////////
// SETS MAIN NAV
//////////////////////////
window.onload = set_nav = function()
{
  if(location.pathname == "/~border/")
  {
  		document.getElementById('nav_home').className = "on";
  }
		
  if(location.pathname.indexOf('/dining/') != -1)
  {
  		document.getElementById('nav_dining').className = "on";
  }
		
  if(location.pathname.indexOf('/gaming/') != -1)
  {
  		document.getElementById('nav_gaming').className = "on";
  }
		
  if(location.pathname.indexOf('/rv_resort/') != -1)
  {
  		document.getElementById('nav_rv_resort').className = "on";
  }
		
  if(location.pathname.indexOf('/gift_shop/') != -1)
  {
  		document.getElementById('nav_gift_shop').className = "on";
  }
	
	if(location.pathname.indexOf('/fuel_station/') != -1)
  {
  		document.getElementById('nav_fuel_station').className = "on";
  }
	
	if(location.pathname.indexOf('/location/') != -1)
  {
  		document.getElementById('nav_location').className = "on";
  }
}


//////////////////////////
// EMAIL LIST FUNCTIONS
//////////////////////////
function check_email_field(the_event)
{
  if(the_event == "focused")
  {
    if(document.subscribeform.email.value == "Enter your email address")
    {
	    document.subscribeform.email.value = "";
    }
  }
  else
  {
     if(document.subscribeform.email.value == "")
    {
	    document.subscribeform.email.value = "Enter your email address";
    }
  }
}

function check_name_field(the_event)
{
  if(the_event == "focused")
  {
    if(document.subscribeform.attribute1.value == "Enter your full name")
    {
	    document.subscribeform.attribute1.value = "";
    }
  }
  else
  {
     if(document.subscribeform.attribute1.value == "")
    {
	    document.subscribeform.attribute1.value = "Enter your full name";
    }
  }
}

function verify_email()
{
	document.subscribeform.emailconfirm.value = document.subscribeform.email.value;
}

function verify_newsletter()
{	
  if((document.subscribeform.attribute1.value == "Enter your full name") || (document.subscribeform.attribute1.value == "Enter your full name") || (document.subscribeform.attribute1.value.length < 3))
	{
		alert("Please verify that your full name is entered correctly and re-submit");
	  return false;
	}
	
	else if((document.subscribeform.email.value == "Enter your email address") || (document.subscribeform.email.value == "") || (document.subscribeform.email.value.indexOf("@") == -1) || (document.subscribeform.email.value.indexOf(".") == -1) || (document.subscribeform.email.value.indexOf("@") > document.subscribeform.email.value.indexOf(".")) || document.subscribeform.email.value < 7)
	{
		alert("The email address you entered is not correct. Please correct it and re-submit");
	  return false;
	}
	
	else
	{
	  return true;
	}
}

//////////////////////////
// DETECT BROWSER VERSION
//////////////////////////
temp=navigator.appVersion.split('MSIE');
ieVer=parseInt(temp[1]);

if(navigator.userAgent.indexOf('Mozilla') != -1)
{
  document.write('\r\n<'+'link rel="stylesheet" type="text/css" media="all" href="http://www.bordertowncasinorv.com/css/mozilla_hacks.css" />');
}
if(ieVer == 6)
{
	 document.write('\r\n<'+'link rel="stylesheet" type="text/css" media="all" href="http://www.bordertowncasinorv.com/css/ie6_hacks.css" />');
}


