/*
 Подмена ссылки при загрузке страницы
 */
$(document).ready(function() {
    var cur_city_id = $('#region_hidden').val();
    if(cur_city_id != ''){
        $.ajax({ 
            url: "/geo.php?act=get_url_by_id", 
            type: "POST",
            data: ({
                "do": "get_url", 
                "id": cur_city_id}), 
                success: function(url){ 
                    $('#main_menu_representatives').attr('href', '/representatives/' + url);
                } 
        }); 
        
        
    }
    else{
        $('#main_menu_representatives').attr('href', '/representatives/');
    }
    
    /*
 Подмена ссылки при выборе города
 */
 $('#region_selector').change(function(){
    var cur_select_val = $('#region_selector').val();
    $.ajax({ 
            url: "/geo.php?act=get_url_by_id", 
            type: "POST",
            data: ({
                "do": "get_url", 
                "id": cur_select_val}), 
                success: function(url){ 
                    $('#main_menu_representatives').attr('href', '/representatives/' + url);
                    
                        window.location.replace("/representatives/" + url);
                    
                } 
        }); 
 });
});


