jQuery(document).ready(function($) {
	 $('.marca,.modello,.codice,.potenza,.anno,.marca_all,.modello_all,.codice_all,.potenza_all,.anno_all,.categoria_all').click( function () {		 				
		 $('.marca,.modello,.codice,.potenza,.anno,.marca_all,.modello_all,.codice_all,.potenza_all,.anno_all,.categoria_all').removeClass("selected");
		 $('.orderByImg').remove();		 
		 var laClasse = $(this).attr("class");		 		 
//		 var theUrlis = window.location.href+"&type=789";
//		 $(this).addClass("selected");
//		 $(this).append("<img class=\"orderByImg\" src=\"typo3conf/ext/intera_simplecatalog/pi1/orderByImg.gif\">");
		 //alert("Data Loaded "+laClasse+" "+theUrlis);		 
		 $(".loading").remove();
		 $("#rgaccord2-nest").fadeOut('normal');				 
		 $(".tableHead").after("<div class=\"loading\" style=\"display:none;\"><img src=\"typo3conf/ext/intera_simplecatalog/pi1/ajax-loader.gif\"><br>loading...</div>");
		 $(".loading").fadeIn("normal");
		 $.post(theUrlis, { postOrderBy: laClasse, postPage: "1" },
		  function(data){
			$(".loading").fadeOut("normal", function () {
				$(".loading").remove();
				$("#rgaccord2-nest").html('');
				$("#rgaccord2-nest").html(data);
				$("#rgaccord2-nest").fadeIn('normal');
				$('.marca,.modello,.codice,.potenza,.anno,.marca_all,.modello_all,.codice_all,.potenza_all,.anno_all,.categoria_all').removeClass("selected");
				$('.orderByImg').remove();	
				$("."+laClasse).addClass("selected");
		 		$("."+laClasse).append("<img class=\"orderByImg\" src=\"typo3conf/ext/intera_simplecatalog/pi1/orderByImg.gif\">");
			});
		  });
		 
	 });								  
});