$(document).ready(function(){
	
	// вызов плагина для поля поиска
	$('#searchinput').inputDefualts({
		cl: 'inactive',
		text: 'поиск по разделам сайта'
	});
	
	//prepend span tag to H1
	//$("h1").prepend("<span><//span>");
	//$("h2").each(function(){
	//	if($(this).children().size() == 0 ){
	//		$(this).prepend("<span><//span>");
	//	}
	//	
	//});
	//$("div.red_grad").prepend("<span><//span>");
	
	//выпадение списка городов
	$('.city_choise > a').click(function(e){
		if (!($(this).hasClass("pressed"))){
			$(this).addClass("pressed");
			$(this).parent().next().slideDown();
			e.preventDefault();
		} else {
			$(this).removeClass("pressed");
			$(this).parent().next().slideUp();
			e.preventDefault();
		}
	});
	
	// вызов плагина для подписей к полям формы
	
	$('.form input[type="text"]').each(function(){
		$(this).inputDefualts({
			cl: 'inactive',
			text: $(this).prev().html()
		});
	});
	$('.form textarea').each(function(){
		$(this).inputDefualts({
			cl: 'inactive',
			text: $(this).prev().html()
		});
	});
	
}); 
