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