function setCounty(sValue)
{
	var fObj = document.getElementById('sCounty');
 	for(i = 0; i < fObj.options.length; i++)
 	{		
 		if(fObj.options[i].text == sValue)
 		{
 			fObj.options[i].selected = true;
			break;
 		}
 	}
}
$(document).ready(function(){
	$("#topmenu").children("li").mouseover(function(){
		$(this).addClass("mover")
	});	
	$("#topmenu").children("li").mouseout(function(){
		$(this).removeClass("mover")
    });

    if (window.location.href.indexOf("L=1") > -1) {
        $("html").addClass("JS");
        $(".languagelink a").text("Svenska").html();
        $(".languagelink a").attr("href", "http://www.tandhygienistforening.se");
    }
});