$(function(){

	// Accordion
	$("#accordion").accordion({ header: "h3", autoHeight: false, collapsible: true, active: false, navigation: true });
	var hash = window.location.hash;
	var thash = hash.substring(hash.lastIndexOf('#'), hash.length);
	if (thash != '') {
		$('#accordion').find('a[href*='+ thash + ']').closest('h3').trigger('click');
	}




	// Tabs
	$('#tabs').tabs();


	// Dialog			
	$('#dialog').dialog({
		autoOpen: false,
		bgiframe: true,
		width: 400,
		height: 445,
		modal: true,
		buttons: {
			"Senden": function() { 
				document.ContactForm.submit();
				
			} 
		}
	});
	
	// Dialog Link
	$('#dialog_link').click(function(){
		$('#dialog').dialog('open');
		return false;
	});
	
	//hover states on the static widgets
	$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
	
});

