/*
 * Riablitiazione JS Controller
 * Copyright (c) 2009  Oliver Astrologo
 * @author  Oliver Astrologo
 */
jQuery(function(){ 	
	// console.log("JS LOADED");
	jQuery("#riabilitazione-wizard-tabs").tabs({				   
		select: function(event, ui) {
			jQuery(".wizard-dettaglio").hide();
			jQuery("#dettaglio-"+(ui.index)).fadeIn("slow");
		},
		fx: { opacity: 'toggle',width: 'toggle' } 
	});	
	jQuery(".wizard-dettaglio,.hide-me").hide();
	jQuery("#dettaglio-0").show();
});
