//alert("a");
var curhost=location.hostname;

//if(jQuery("#languagedropdown ul li:first-child a").attr("href").indexOf(curhost)==-1)jQuery("#languagedropdown ul li:first-child").before(jQuery("#languagedropdown ul li a[href^='http://"+curhost+"']").parent());
jQuery("#languagedropdown ul li:first-child").addClass('first');
jQuery("#languagedropdown ul li:last-child").addClass('last');
jQuery("#languagedropdown").append("<div class=\"bg\" > </div>");
jQuery("#languagedropdown.bg").css({ 'opacity': '0.7' });
jQuery("#languagedropdown.bg").css({ 'height': '0px' });
var lddid="#languagedropdown li:not(:first-child)";
jQuery(lddid).css({'display':'none'});
jQuery("#languagedropdown li:first-child").hover(function(){jQuery(lddid).stop(false,true).slideDown('slow');});
jQuery("#languagedropdown").hover(function(){},function(){jQuery(lddid).stop(false,true).slideUp('slow');});
jQuery("#languagedropdown a").click(function(){
switchLang(jQuery(this).attr("href"));
return false;
});
//alert("ae");
