//image swap script for rooms 
 if (document.images)
   {
     image_off= new Image(140,90);
     image_off.src="http://www.blvdcasino.com/images/sections/room_rollover/one_bed.jpg";  

     room_image_2= new Image(140,90);
     room_image_2.src="http://www.blvdcasino.com/images/sections/room_rollover/one_bed.jpg";
     room_image_3= new Image(140,90);
     room_image_3.src="http://www.blvdcasino.com/images/sections/room_rollover/two_bed.jpg";  
     room_image_4= new Image(140,90);
     room_image_4.src="http://www.blvdcasino.com/images/sections/room_rollover/executive.jpg";   
     room_image_5= new Image(140,90);
     room_image_5.src="http://www.blvdcasino.com/images/sections/room_rollover/concierge.jpg";  
	 room_image_6= new Image(140,90);
     room_image_6.src="http://www.blvdcasino.com/images/sections/room_rollover/penthouse.jpg";
	 room_image_7= new Image(140,90);
     room_image_7.src="http://www.blvdcasino.com/images/sections/room_rollover/presidential.jpg";
   }

function roomswap1(picName,imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + ".src");
      document[picName].src= imgOn;
    }
 }

//for dropdowns on tramonto menu pages
function go1(){
if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
		}
	}

function goToNextPage()
{
PageIndex=document.form_menu.My_Choice.selectedIndex
if (document.form_menu.My_Choice.options[PageIndex].value != "none")
{
location = document.form_menu.My_Choice.options[PageIndex].value
}
}


//fix for multi-language 
function jumpToMyEnglish() {

            var myUrl = '<WXWEB>';            

            // remove the first occurance of /fr in the URL

            window.location = myUrl.replace( "/ch/", "/" );         

            }