//////////////////////////
// SETS MAIN NAV
//////////////////////////
window.onload = set_nav = function()
{
  if(location.pathname.indexOf('/home/') != -1 || location.pathname == "/")
  {
  		document.getElementById('nav_home').className = "on";
  }
		
		if(location.pathname.indexOf('/blog/') != -1)
  {
  		document.getElementById('nav_blog').className = "on";
  }
		
		if(location.pathname.indexOf('/about_the_utah_tech_spotlight/') != -1)
  {
  		document.getElementById('nav_about').className = "on";
  }
		
		if(location.pathname.indexOf('/events/') != -1 || location.pathname.indexOf('2006') != -1 || location.pathname.indexOf('2007') != -1 || location.pathname.indexOf('2008') != -1 || location.pathname.indexOf('2009') != -1 || location.pathname.indexOf('2010') != -1)
  {
  		document.getElementById('nav_events').className = "on";
  }
		
		if(location.pathname.indexOf('/past-events/') != -1)
  {
  		document.getElementById('nav_spotlights').className = "on";
  }
		
		if(location.pathname.indexOf('/sponsors/') != -1)
  {
  		document.getElementById('nav_sponsors').className = "on";
  }
		
		if(location.pathname.indexOf('/sign-up/') != -1)
  {
  		document.getElementById('nav_sign_up').className = "on";
  }
		
		if(location.pathname.indexOf('/contact-us/') != -1)
  {
  		document.getElementById('nav_contact').className = "on";
  }
}