$(function(){ $(document).ready(function(){ $( "select.selectbox-link" ).change(function(){ var thisUrl=$(this).children("option:selected").val(); if (thisUrl) location.href=thisUrl; }); }); $(document).ready(function(){ // Show hide popover $(".dropdown").click(function(){ $(this).find(".dropdown-menu").slideToggle("fast"); }); }); $(document).on("click", function(event){ var $trigger = $(".dropdown"); if($trigger !== event.target && !$trigger.has(event.target).length){ $(".dropdown-menu").slideUp("fast"); } }); $(document).on("click", 'a[href="#"]', function(e){ e.preventDefault(); }); $('.mslider').bxSlider({ auto: true, mode: 'fade', infiniteLoop:true, captions: true, responsive:true, adaptiveHeight:true, pager:false, controls:true }); $(".tm_si").click(function(){ $(".serch").show(); $(".tm_sic").show(); $(".tm_si").hide(); }) $(".tm_sic").click(function(){ $(".serch").hide(); $(".tm_sic").hide(); $(".tm_si").show(); }) $(".ami").click(function(){ $(".site_map").animate({left:'0'}, 500); $(".bg").show(); }) $(".site_map .smc").click(function(){ $(".site_map").animate({left:'-360px'}, 500); $(".bg").hide(); }) })