$(document).ready(function(){

		// Dialog Link
		$('#dialog_link_hoe_werkt_het').click(function(){
			$('#dialog_hoe_werkt_het').dialog('open');
			return false;
		});
		// Dialog Box
		$("#dialog_hoe_werkt_het").dialog({
			autoOpen: false,
			bgiframe: true,
			height: 555,
			width:850,
			modal: true

		});
		$('#dialog_hoe_werkt_het_close').click(function(){
			$('#dialog_hoe_werkt_het').dialog('close');
			return false;
		});
		
		// Dialog Link
		$('#dialog_link_cases').click(function(){
			$('#dialog_cases').dialog('open');
			return false;
		});
		
		$('#dialog_link_cases2').click(function(){
			$('#dialog_cases').dialog('open');
			return false;
		});
		// Dialog Box
		$("#dialog_cases").dialog({
			autoOpen: false,
			bgiframe: true,
			height: 555,
			width:850,
			modal: true

		});
		$('#dialog_cases_close').click(function(){
			$('#dialog_cases').dialog('close');
			return false;
		});

		// Dialog Link
		$('#dialog_link_contact').click(function(){
			$('#dialog_contact').dialog('open');
			return false;
		});
		// Dialog Box
		$("#dialog_contact").dialog({
			autoOpen: false,
			bgiframe: true,
			height: 555,
			width:850,
			modal: true

		});
		$('#dialog_contact_close').click(function(){
			$('#dialog_contact').dialog('close');
			return false;
		});
});//document ready



