	$(document).ready(function()	{


  
  $("#addressInput").keypress(function (e) {
  
      if (e.which == 13)	searchLocations();
    });

  
	$(".vkladka").click(function()	{

		var m = $(this).attr('id').match(/^vk([0-9]+)/);
		
		$(".vkladka").removeClass("grey");
		
		$(this).addClass("grey");
		
		$(".basediv").hide();
		
		$('#div' + m[1]).show();
		
		if(m[1] == 1)	{	$('#type').val('tovar');	$('#looktext').html('Стройматериал');	map.setCenter(new GLatLng(55.7549, 37.6158), 10);	}
		if(m[1] == 2)	{	$('#type').val('tovar');	$('#looktext').html('Услуга');	map.setCenter(new GLatLng(55.7549, 37.6158), 10);	}
		if(m[1] == 3)	{	$('#type').val('rynki');	$('#looktext').html('Рынок');			}
		if(m[1] == 4)	{	$('#type').val('org');		$('#looktext').html('Организация');		}
		
		});							});
