$(document).ready(function(){

	$('a.show-lang').mouseover(function() {
	$("div#intlSelect").show("fast");
	$("a.show-lang").addClass('lang-on');
	return false;
	});
	
	$("div#intlSelect").hover(
      function () {
      }, 
      function () {
        $(this).hide('slow');
		$("a.show-lang").removeClass('lang-on');
      }
    );

});

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
