
$(document).ready(function(){
	
	$("#brand").change(function(){
		var sbrand = $("#brand option:selected").attr("value");
		$.post("./ajax/load_models_filter.php", {brand: sbrand},
			   function(data){
					$("#model_select").html(data);
			   });
	});
	$("#filter input.small").click(function()
	{
		if($(this).attr("value") == "od" || $(this).attr("value") == "do")
		{
			$(this).attr("value","");
		}
	});
	$("#show_filters").click(function(event){
		event.preventDefault();
		if($(this).attr("rel") == "showf")
		{
			$(this).attr("rel","hidef");
			$("#hidden_filters").show();
			$(this).text("Jednoduché hledání");
			$("#btn-searchbottom").css("bottom","-10px");
		}
		else
		{
			$(this).attr("rel","showf");
			$("#hidden_filters").hide();
			$(this).text("Rozšířené hledání");
			$("#btn-searchbottom").css("bottom","-10px");
		}
	});
	var sbrand = $("#brand option:selected").attr("value");
	$.post("./ajax/load_models_filter.php", {brand: sbrand},
		   function(data){
				$("#model_select").html(data);
		   });
});
