
jQuery(document).ready(function(){
 $(".reset").click(function () { 
		$('.contacts form input.inp').attr({value: ""});
		$('.contacts form textarea').attr({value: ""});
   });
   
 $(".btn").click(function () { 
 		$(".filter_box form.flt_form input.txt").each(function()
		{
			if ($(this).attr('value')=='Цветы') {
				$(this).attr({value: ""});
			}
			if ($(this).attr('value')=='Повод') {
				$(this).attr({value: ""});
			}
			if ($(this).attr('value')=='Цена до') {
				$(this).attr({value: ""});
			}
			if ($(this).attr('value')=='Для кого') {
				$(this).attr({value: ""});
			}
		});
   });
   
  	$(".filter_box form.flt_form select option").each(function()
	{
		if ($(this).parent().attr('name')=="ext_custom_14") {
			if ($(this).attr('value')=='') {
			$(this).empty();
			$(this).text("Цветы");
			}
		}
		if ($(this).parent().attr('name')=="ext_custom_13") {
			if ($(this).attr('value')=='') {
			$(this).empty();
			$(this).text("Цена до");
			}
		}
		if ($(this).parent().attr('name')=="ext_custom_11") {
			if ($(this).attr('value')=='') {
			$(this).empty();
			$(this).text("Для кого");
			}
		}
		if ($(this).parent().attr('name')=="ext_custom_12") {
			if ($(this).attr('value')=='') {
			$(this).empty();
			$(this).text("Повод");
			}
		}
	});
		
	 $(".btn").click(function () { 
			$(".filter_box form.flt_form select").each(function()
			{
				if ($(this).find('option')=='Цветы') {
					$(this).attr({value: "Все"});
				}
				if ($(this).find('option')=='Повод') {
					$(this).attr({value: "Все"});
				}
				if ($(this).find('option')=='Цена до') {
					$(this).attr({value: "Все"});
				}
				if ($(this).find('option')=='Для кого') {
					$(this).attr({value: "Все"});
				}
			});
	   });
});
