$(function(){
	
	// Accordion
	$('#stage').accordion({ header:"div.titolo", collapsible:true, autoHeight:false });
	$('#geogrip').accordion({ header:"div.titolo", collapsible:true, autoHeight:false });
	
	// Tabs
// 	$('#tabs').tabs();
// 	
// 	
// 	// Dialog			
// 	$('#dialog').dialog({
// 		autoOpen: false,
// 		width: 600,
// 		buttons: {
// 			"Ok": function() { 
// 				$(this).dialog("close"); 
// 			}, 
// 			"Cancel": function() { 
// 				$(this).dialog("close"); 
// 			} 
// 		}
// 	});
// 		
// 	// Dialog Link
// 	$('#dialog_link').click(function(){
// 		$('#dialog').dialog('open');
// 		return false;
// 	});
// 	
// 	// Datepicker
// 	$('#date').datepicker({
// 		changeMonth:true, 
// 		changeYear:true, 
// 		showButtonPanel:true, 
// 		dayNamesMin: ['Do', 'Lu', 'Ma', 'Me', 'Gi', 'Ve', 'Sa'], 
// 		monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu','Lug','Ago','Set','Ott','Nov','Dec'], 
// 		currentText:'Oggi', 
// 		closeText: 'Chiudi', 
// 		dateFormat:'dd/mm/yy', 
// 		showOn:'button', 
// // 		buttonImage:'images/calendar.gif', 
// 		buttonImageOnly:false, 
// 		yearRange:'-100:+100'
// 	});
// 
// 		
// 	// Slider
// 	$('#slider').slider({
// 		range: true,
// 		values: [17, 67]
// 	});
// 		
// 	// Progressbar
// 	$('#progressbar').progressbar({
// 		value: 20 
// 	});
// 		
// 	//hover states on the static widgets
// 	$('#dialog_link, ul#icons li').hover(
// 		function() { $(this).addClass('ui-state-hover'); }, 
// 		function() { $(this).removeClass('ui-state-hover'); }
// 	);
});


