

var commercialIsPlaying = false;
function setOthers(caller,state){
	var intCaller = parseInt(caller);
    var intState = parseInt(state);
    
    if (intCaller == 1){
        //small video
        if ((!commercialIsPlaying) && (isMuted() != "true")){
            if (intState == 1){
                window.document.tgif_player.setSound('video','over');
            }
            else {
                window.document.tgif_player.setSound('video','out');
            }
        }
    }
    else if (intCaller == 2) {
        //commercial
        if (intState == 1){
            commercialIsPlaying = true;
            window.document.tgif_player.setSound('commercial','play');
        }
        else {
			commercialIsPlaying = false;
            window.document.tgif_player.setSound('commercial','stop');
        }
    }
}
        
function topNavShowTab (navItem) {
	document.getElementById ("TopNav" + navItem + "DropDown").style.visibility = "visible";
	document.getElementById ("TopNav" + navItem + "Rollover").style.visibility = "visible";
	document.getElementById ("TopNav" + navItem + "Category").style.visibility = "hidden";
}

function topNavHideTab (navItem) {
	document.getElementById ("TopNav" + navItem + "DropDown").style.visibility = "hidden";
	document.getElementById ("TopNav" + navItem + "Rollover").style.visibility = "hidden";
	document.getElementById ("TopNav" + navItem + "Category").style.visibility = "visible";
}

function homeExpand (itemName) {
	switch (itemName) {
		case "Caipirinhas" :  document.getElementById ("box2").style.visibility = "hidden";
							  document.getElementById ("CaipirinhasLargeBox").style.visibility = "visible";
							  document.getElementById ("homeCaipirinhasExpandGraphic").style.visibility = "hidden";
							  document.getElementById ("homeCaipirinhasExpandGraphic").style.visibility = "hidden";
							  return false;
		case "CaipirinhasDescription" :   document.getElementById ("homeCaipirinhasTitle").style.visibility = "hidden";	
										  document.getElementById ("homeCaiprinihasUpArrow").style.visibility = "hidden";	
										  document.getElementById ("CaiprinihasDescriptionExpanded").style.visibility = "visible";	
										  document.getElementById ("homeCaipirinhasExpandGraphic").style.top = "422px";
										  document.getElementById ("homeCaipirinhasExpandGraphic").style.left = "634px";	
										  document.getElementById ("homeCaipirinhasExpandGraphicClick").style.top = "422px";
										  document.getElementById ("homeCaipirinhasExpandGraphicClick").style.left = "634px";
										  break;
		case "BartendersDescription" :	  document.getElementById ("BartendersDescriptionExpanded").style.visibility = "visible";
										  document.getElementById ("homeBartendersUpArrow").style.visibility = "hidden";	
										  document.getElementById ("homeBartendersLabel").style.visibility = "hidden";	
		case "menuPod"               :    document.getElementById ("homeMenuPodImage").src = "../home/images/menu_step2_ANIM.gif";	 
										  break;
		case "gmmsPod"               :    document.getElementById ("homeGmmsPodImage").src = "../home/images/GMMS_pod_ANIM4.gif";
										  break;
		                                  
		                                  
		                                  
		                                  
	}
} 

function homeCollapse (itemName) {
	switch (itemName) {			   
		case "Caipirinhas" :  document.getElementById ("box2").style.visibility = "visible";
							  document.getElementById ("CaipirinhasLargeBox").style.visibility = "hidden";	  
							  document.getElementById ("homeCaipirinhasExpandGraphic").style.visibility = "visible";
							  document.getElementById ("homeCaipirinhasExpandGraphicClick").style.visibility = "visible";
							  return false;
		case "CaipirinhasDescription" :	  document.getElementById ("homeCaipirinhasTitle").style.visibility = "visible";	
										  document.getElementById ("homeCaiprinihasUpArrow").style.visibility = "visible";	
										  document.getElementById ("CaiprinihasDescriptionExpanded").style.visibility = "hidden";   
										  document.getElementById ("homeCaipirinhasExpandGraphic").style.top = "500px";
										  document.getElementById ("homeCaipirinhasExpandGraphic").style.left = "634px";  
										  document.getElementById ("homeCaipirinhasExpandGraphicClick").style.top = "500px";
										  document.getElementById ("homeCaipirinhasExpandGraphicClick").style.left = "634px";
										  break;
		case "BartendersDescription" :	  document.getElementById ("BartendersDescriptionExpanded").style.visibility = "hidden";
										  document.getElementById ("homeBartendersUpArrow").style.visibility = "visible";
										  document.getElementById ("homeBartendersLabel").style.visibility = "visible";	
										  return false;	   
		case "menuPod"               :    document.getElementById ("homeMenuPodImage").src = "../home/images/menu_step1.jpg";	 
										  break;  
		case "gmmsPod"               :    document.getElementById ("homeGmmsPodImage").src = "../home/images/GMMS1.jpg";
										  break;
	}
}

function menuExpand (itemName, count) {
	//alert ("MenuExpand: " + itemName);
	switch (itemName) {
		case "HeroImageOne" :  document.getElementById ("HeroShotTitleOneDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotDescriptionOneDiv"+count).style.visibility = "visible";
							   return false;
		case "HeroImageTwo" :  document.getElementById ("HeroShotTitleTwoDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotDescriptionTwoDiv"+count).style.visibility = "visible";
							   return false;
		case "HeroImageRPRPOne" :  document.getElementById ("HeroShotRPRPTitleOneDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotRPRPDescriptionOneDiv"+count).style.visibility = "visible";
							   return false;
		case "HeroImageRPRPTwo" :  document.getElementById ("HeroShotRPRPTitleTwoDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotRPRPDescriptionTwoDiv"+count).style.visibility = "visible";
							   return false;
	}
}

function menuCollapse(itemName, count) {
	//alert ("MenuCollapse: " + itemName);
	switch (itemName) {
		case "HeroImageOne" :  document.getElementById ("HeroShotDescriptionOneDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotTitleOneDiv"+count).style.visibility = "visible";
							   return false;
		case "HeroImageTwo" :  document.getElementById ("HeroShotDescriptionTwoDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotTitleTwoDiv"+count).style.visibility = "visible";
							   return false;
		case "HeroImageRPRPOne" :  document.getElementById ("HeroShotRPRPDescriptionOneDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotRPRPTitleOneDiv"+count).style.visibility = "visible";
							   return false;
		case "HeroImageRPRPTwo" :  document.getElementById ("HeroShotRPRPDescriptionTwoDiv"+count).style.visibility = "hidden";
							   document.getElementById ("HeroShotRPRPTitleTwoDiv"+count).style.visibility = "visible";
							   return false;
	}
}

function showJavascriptObjects (pageName) {
	switch (pageName) {
		case "Home" :   //document.getElementById ("homeCaiprinihasUpArrow").style.visibility = "visible";	  //Disabled for Event 5.
						//document.getElementById ("homeBartendersUpArrow").style.visibility = "visible";
						break;
		case "Menu" :   document.getElementById ("homeCaiprinihasUpArrow").style.visibility = "visible";
						document.getElementById ("homeBartendersUpArrow").style.visibility = "visible";
						break;
	}
}
