/*
*	Corteco JS
*/
$(document).ready(function(){
	
	$("#submit").hide();
	
	$("#car_brand_select,#product_group_select,#results_per_page").livequery("change",function(){
		
		$(".loader").show();
		$("#filters > select").attr("disabled", true); 
		
		$.ajax({  
			type: "GET",
			url: "http://www.corteco.com/" + $("#filterform").attr('action'),  
			data: "id=" + $("input[name=id]").val() + "&type=12&user_corteco_pi1[filter][car_brand]=" + $("#car_brand_select").val() + "&user_corteco_pi1[filter][product_group]=" + $("#product_group_select").val() + "&user_corteco_pi1[filter][results_per_page]=" + $("#results_per_page").val(),
			dataType: "html", 
			success: function(data){
			    $('#filters').html(data);  
				$(".loader").hide();
			}  
		});

		$.ajax({  
			type: "GET",
			url: "http://www.corteco.com/" + $("#filterform").attr('action'),  
			data: "id=" + $("input[name=id]").val() + "&type=14&user_corteco_pi1[filter][car_brand]=" + $("#car_brand_select").val() + "&user_corteco_pi1[filter][product_group]=" + $("#product_group_select").val() + "&user_corteco_pi1[filter][results_per_page]=" + $("#results_per_page").val(),
			dataType: "html", 
			success: function(data){
			    $('#list').fadeOut(function(){
					$('#list').html(data).fadeIn();
				});
			}  
		});
		
	});
		
});