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

