jQuery(function() { jQuery(".dropdown dt a").click(function() { jQuery(".dropdown dd ul").toggle(); }); jQuery(".dropdown dd ul li a").click(function() { var text = jQuery(this).html(); //alert(text); jQuery(".dropdown dt a").html(text); jQuery(".dropdown dd ul").hide(); getSelectedValue("newlan"); }); function getSelectedValue(id) { return window.location.href = jQuery("#" + id).find("dt a span.value").html(); } jQuery(document).bind('click', function(e) { var jQueryclicked = jQuery(e.target); if(!jQueryclicked.parents().hasClass("dropdown")) jQuery(".dropdown dd ul").hide(); }); //homepage soical select start jQuery("#newsoical").mouseover(function() { jQuery(".sodown dd ul").show(); }); jQuery("#newsoical").mouseout(function() { jQuery(".sodown dd ul").hide(); }); jQuery(".sodown dd ul li a").click(function() { var text = jQuery(this).html(); //alert(text); //jQuery(".sodown dt a").html(text); jQuery(".sodown dd ul").hide(); //getSelectedValue("newsoical"); }); $('[href="/customer/login"],[href="/customer/signup"]').each(function(){ var href = $(this).attr('href')+"?return="+encodeURIComponent(window.location.href); $(this).attr('href',href); }); });