// JavaScript Document

$(document).ready(function(){
	$("#search").focus(function(){if (this.value == "введите текст для поиска") this.value = "";});
	$("#search").blur(function(){if (this.value == "") this.value = "введите текст для поиска";});
	
	$('#map').click(function() {
		$('.overlay, .popup').removeClass('hidden');
	});
	
	$('.popup .close').click(function() {
		$('.overlay, .popup').addClass('hidden');
	});
});