// JavaScript Document
/* holltwood tans */
/*

wmPlayer.controls.Play();

function checkState() {
    // Initiated if video is not playing when FullScreen button is clicked.
    // Checks every 500ms to see when the player starts playing the video.
    // Once it does start playing, this code makes the video go fullscreen.
    if (3 == WMPlay.playState) {
      window.clearInterval( stateTimer );
      stateTimer = null;
      WMPlay.fullscreen = 'true';
    }
  }
  
 

window.onload = prepareLinks;
function prepareLinks()
{
	var links = document.getElementsByTagName('a');
	for (var i=0; i<links.length; i++)
		{
		//alert(links[i])
			if(links[i].getAttribute('class') == 'mainNav')
			{		
				links[i].onclick = function()
				{
					popUp(this.getAttribute('href'));
					return false;
					
			}
		}
	}
}

function popUp(winURL){
	window.open(winURL, 'popup', 'width=640,height=500, location=yes');		
}
 */
/*********************************************************************************/
var hoverNav = new Boolean();


function subNavTrigger(menu)
{
	hoverNav = true;
	
	switch (menu)
	{
		case 'tanning':
		document.getElementById('subNavigation').innerHTML = '<ul><li><a href="tanning-aboutus.html">About Us</a></li><li><a href="tanning-booths.html">HT Tanning Booths</a></li><li><a href="tanning-uvfreetan.html">UV Free Tanning</a></li><li><a href="tanning-lotions.html">HT Lotions</a></li><li><a href="tanning-medication.html" >Medications</a></li><li><a href="tanning-questions.html">Q &amp; A</a></li><li><a href="contact.html">Contact</a></li></ul>';
		break;
		
		case 'locations':
		document.getElementById('subNavigation').innerHTML = '';
		break;
		
		case 'news':
		document.getElementById('subNavigation').innerHTML = '';
		break;
		
		// style="padding-left:22%;"
		
		case 'giftcards':
		document.getElementById('subNavigation').innerHTML = '';
		break;
		
		case 'franchising':
		//<li><a href="franchise_uv-free.html">UV Free Tanning</a></li>
		document.getElementById('subNavigation').innerHTML = '<ul><li><a href="franchise_overview.html">About Us</a></li><li><a href="franchise_manufacturing.html">Manufacturing</a></li><li><a href="franchise_marketing.html">Marketing</a></li><li><a href="franchise_support.html">Support</a></li><li><a href="franchise_technology.html">Tanning Technology</a></li><li><a href="franchise_training.html">Training</a></li><li><a href="franchise_contact.html">Contact</a></li></ul>';
		break;
		
		case 'contact':
		document.getElementById('subNavigation').innerHTML = '';
		break;
		
		case 'owners':
		document.getElementById('subNavigation').innerHTML = '';
		break;
	}

}


function clearSubNav(){
	if(hoverNav==false){
		document.getElementById('subNavigation').innerHTML = '';
	}
}
//<li><a href="franchise_uv-free.html">UV Free Tanning</a></li>
function franchiseNav(){
	document.getElementById('subNavigation').innerHTML = '<ul><li><a href="franchise_overview.html">About Us</a></li><li><a href="franchise_manufacturing.html">Manufacturing</a></li><li><a href="franchise_marketing.html">Marketing</a></li><li><a href="franchise_support.html">Support</a></li><li><a href="franchise_technology.html">Tanning Technology</a></li><li><a href="franchise_training.html">Training</a></li><li><a href="franchise_contact.html">Contact</a></li></ul>';	
}
function tanningNav(){
	document.getElementById('subNavigation').innerHTML = '<ul><li><a href="tanning-aboutus.html">About Us</a></li><li><a href="tanning-booths.html">HT Tanning Booths</a></li><li><a href="tanning-uvfreetan.html">UV Free Tanning</a></li><li><a href="tanning-lotions.html">HT Lotions</a></li><li><a href="tanning-medication.html" >Medications</a></li><li><a href="tanning-questions.html">Q &amp; A</a></li><li><a href="contact.html">Contact</a></li></ul>';
}

function open_pop(url, specs){
      var new_win = window.open(url, "feature", specs);
      new_win.focus();
}

function open_window(url, specs, name){
	if (name == null || name == "")
	{
		name = "win";
	}

      var new_win = window.open(url, name, specs);
	new_win.focus();
}


function popupFooter(){
	document.write('&copy;1995 - 2008 Hollywood Tans, LLC. All rights reserved. All trademarks, service marks and logos are owned by or registered to Hollywood Tans<sup>&reg;</sup>.')	
}

function winClose(){
	window.close();
}
