$(function(){
	// Accordion
	$("#accordion").accordion({ header: "h3" });
	// Tabs
	$('#tabs').tabs();
	// Dialog			
	$('#dialog').dialog({
		bgiframe: true,
		modal: true,
		autoOpen: false,
		width: 550,
		buttons: { 
			"OK": function() { 
				$(this).dialog("close"); 
			} 
		}
	});	
	
	// Dialog Link
	$('#dialog_link').click(function(){
		$('#dialog').dialog('open');
		return false;
	});
	
	
	// Datepicker
	$('.datepicker').datepicker({
		changeMonth: true,
		changeYear: true,
		inline: false,
	});
	// 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'); }
	);
});