// Author : Rio Husnady Hidayat | spiderio
// DO NOT USE THIS SCRIPT WITHOUT PERMISSION!
//panggil semua fungsi
$(function(){
		
				// Accordion
				$("#accordion").accordion({ header: "h2", event: "mouseover" });
	
				// Tabs
				$('#cihaaaa').tabs().tabs('rotate', 2500);
				$('#tabs').tabs();
				$('#gallery').tabs().tabs('rotate', 4000);
				$('#programtab').tabs({ event: 'mouseover' });
	
				/* Dialog			
				$('#dialog').dialog({
					autoOpen: false,
					width: 600,
					buttons: {
						"Ok": function() { 
							$(this).dialog("close"); 
						}, 
						"Cancel": function() { 
							$(this).dialog("close"); 
						} 
					}
				}); */

				// Slider
				$('#slider').slider({
					range: true,
					values: [17, 67]
				});

				//hover states on the static widgets
				$('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); }, 
					function() { $(this).removeClass('ui-state-hover'); }
				);
				
});