//function to do an mouse over effect on input button
function btn_mouseover(btn_name, path, img_name){
 //alert("test in");
  document.getElementById(btn_name).src = path+"themes/BLVC/img/btn/"+img_name;
}

//function to do an mouse out effect on input button
function btn_mouseout(btn_name, path, img_name){
  //alert(btn_name);
  document.getElementById(btn_name).src = path+"themes/BLVC/img/btn/"+img_name;
 
}

//function to do an mouse over effect on input button iframe
function btn_mouseover_iframe(btn_name, img_name){
 //alert("test in");
  parent.frames['contentFrame'].document.getElementById(btn_name).src = "../../../../themes/BLVC/img/btn/"+img_name+"";
}

//function to do an mouse out effect on input button iframe
function btn_mouseout_iframe(btn_name, img_name){
  //alert(btn_name);
  parent.frames['contentFrame'].document.getElementById(btn_name).src = "../../../../themes/BLVC/img/btn/"+img_name+"";
 
}

function home_promo_content(curent_lang){
  document.getElementById("home_promo_content_div").innerHTML="<a href=\"javascript:;\" onclick=\"parent.load_page(\'su\',\'web\',\'\',\'\');\"><img src=\"../../../../themes/BLVC/img/lang/"+curent_lang+"/home_promo_img.jpg\" alt=\"Bingo Las Vegas Casino\" title=\"Bingo Las Vegas Casino\" border=\"0\"></a>";
}

function mainnav_mouseover(id){

var id_td=id+'_td';
var id_btn=id+'_btn';

  if(id_td=="home_td"){
    load_btn_lft_cnr_h();
   }else if(id_td=="about_us_td"){
     load_btn_rgt_cnr_h();
   }
//   alert(id_div);
//   document.getElementById(id_btn).src="themes/BLVC/img/btn/"+id+"_h.png";
}

function mainnav_mouseout(id){

var id_td=id+'_td';
var id_btn=id+'_btn';

  if(id_td=="home_td"){
    load_btn_lft_cnr();
   }else if(id_td=="about_us_td"){
     load_btn_rgt_cnr();
   }
   
//   document.getElementById(id_btn).src="themes/BLVC/img/btn/"+id+".png";
}
