		$(document).ready(function() {
    		$("#carosello").jCarouselLite({
        		visible: 1,
        		speed: 130,
        		btnNext: ".next",
                btnPrev: ".prev",
                            afterEnd: function(a) {  
                tb_init('a.thickbox, area.thickbox, input.thickbox');  
            }  
    		});
    		$("#preventivo").validate({
    invalidHandler: function(form, validator) {
      var errors = validator.numberOfInvalids();
      if (errors) {
        var message = errors == 1
          ? 'C\' un errore nel campo evidenziato in rosso. '
          : 'Ci sono errori nei campi evidenziati in rosso.';
       	 $("div.error span").html(message);
        $("div.error").show();
      } else {
        $("div.error").hide();
      }
    }
 })
		});
		

