// MENU selector


    $(document).ready(function(){  
      
        $("ul.subnav").parent().html(function(index, oldhtml){
          return "<label>"+oldhtml+"</label>";
        });
      
        $("ul.topnav li label").hover(function() { //When trigger is clicked...  
      
            //Following events are applied to the subnav itself (moving subnav up and down)  
            $(this).parent().find("ul.subnav").stop(true,true).slideDown('fast').show(); //Drop down the subnav on click  
      
            $(this).parent().hover(function() {  
            }, function(){  
                $(this).parent().find("ul.subnav").stop(true,true).slideUp('veryslow'); //When the mouse hovers out of the subnav, move it back up  
            });  
      
            //Following events are applied to the trigger (Hover events for the trigger)  
            }).hover(function() {  
                $(this).addClass("subhover"); //On hover over, add class "subhover"  
            }, function(){  //On Hover Out  
                $(this).removeClass("subhover"); //On hover out, remove class "subhover"  
        });  
      
    });
    
function goTo(url) {
/*
var sE = null, url;
 if(document.getElementById) {
sE = document.getElementById('languageSelector');
} else if(document.all) {
sE = document.all['languageSelector'];
}
if(sE && (url = sE.options[sE.selectedIndex].value)) {
*/
//alert(url);
location.href = url;
}

if (window != top) top.location.href = location.href;
  function hide_google() {
  //Luk Google translatebar
  document.getElementsByTagName("frameset")[0].rows="0,*";
  }

