jQuery(function($){		
	$('div#slideshow-header').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	}); 
	
	var formRicercaMarca=$("#ricercaMMA");
	
	$("select",formRicercaMarca).change(function(){	
		var el=$(this);
		var nextSelect=el.next("select");
		if(el.val()!="" && nextSelect.size()!=0){		
			el.nextAll("select").attr("disabled","disabled").removeOption(/.+/);						
			nextSelect.addOption({"Loading":"Loading..."},true);
			nextSelect.ajaxAddOption("ajax_combo.php",nextSelect.prevAll("select").serializeArray(),false,function(){						
				$(this).removeOption("Loading").removeAttr("disabled");
			});	
		}
	}).each(function(){
		$(this).val("");
	});	
	$("#cercaMMA").click(function(){
		formRicercaMarca.submit();
		return false;
	});
	
	$("a.fancybox").fancybox({
		'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Immagine ' + (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}	 	
	});
});
