$(document).ready(function(){
	$.getJSON('/?widget=menuTop', function (data) {
		$('#site_top_menu_wrapper').html(data.content);
		$('#mt_5').addClass('current');
	});
	$.getJSON('/?widget=cityTop', function (data) {
		$('#site_top_city_wrapper').html(data.content);
		$('#top_city select').selectstyler();
		$("#top_city_wrapper .ss_list li[id!='Твой город']").click(function(){
			window.location.href = "/" + $(this).attr("id");
		});
	});
	
	$.getJSON('/?widget=footerText', function (data) {
		$('#site_footer .site_left_part').html(data.content);
	});
	
/*search*/
	$("#site_top_search input.search_string").val("Поиск");
	$("#site_top_search input.search_string").focus(function(){
		if($(this).val() == "Поиск") $(this).val("");
	});
	$("#site_top_search input.search_string").blur(function(){
		if($(this).val() == "") $(this).val("Поиск");
	});
/*/search*/
});
