$(document).ready(function(){
	if ($('#YMapsID_search').length != 0) {
		var map_s;
        var mini_map;
        init_search_map();
        //init_search_on_map();
        
        checkSearchTabs();
        
        $('#link_tab1').click(function(){
            tabs(1);
            $('.object_popup_holder').hide();
        });
        
        $('#link_tab2').click(function(){
            tabs(2);
            search_show_points(); // located in map_Yandex_search_show_points.js
        });
    }
});

function checkSearchTabs(){
	hash_matches = window.location.href.match(/#tab(\d+)/);
	if (presets.alternate_search()) {
		tabs(2);
        search_show_points(); // located in map_Yandex_search_show_points.js
	} else {
		if (hash_matches && hash_matches.length == 2) {
	        tabs(hash_matches[1]);
	        if (hash_matches[1] == 2) {
	        	search_show_points(); // located in map_Yandex_search_show_points.js
	        }
	    } else {
	        tabs(1);
	    }
	}
}
