function pickLanguage()
{
    var link = document.getElementById("language_select").value;
    window.location = link;
}

$J.fn.lpdropdown = function()
{
	this.hover(function(){

        $J(this).addClass("hover");
        $J('ul:first',this).css('visibility', 'visible');

    }, function(){

        $J(this).removeClass("hover");
        $J('ul:first',this).css('visibility', 'hidden');

    });
    $J("li",this).hover(function(){
    	$J(this).addClass("hover");
    }, function(){
    	$J(this).removeClass("hover");

    });
}

$J(function(){
	$J("span.lpdropdown").lpdropdown();
	if(document.getElementById("languageDropdown"))
	{
	    document.getElementById("languageDropdown").style.left = document.getElementById("languageDropdown").parentNode.offsetLeft+"px";
	}
});
