$(document).ready(function(){
    $('select#switch_lang').change(function(){
        var requested_lang = $(this).val();
		
        window.location.href = (BASE_URL + 'switch_lang/index/' + requested_lang);
    })
	
    $(".dilsec").hover(function(){
        $(this).addClass("active");
        $("ul", $(this)).stop(true,true).slideDown();
    },function(){
        $(this).removeClass("active");
        $("ul", $(this)).stop(true,true).fadeOut(100);
    });

});





