function showDialog(dialog){
	switch(dialog){
		case 'under construction':
				$("#dialog_underconstruction").dialog({
   					modal : true,
					width: 550,
					resizable: false, 
					dragable: false,
					closeOnEscape: false,
   					open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
				});
		break;	
	}	
}

$(document).ready(function(){
	
	$('#emailform').ajaxForm(function(msg){
		if(msg == 'success'){
			$("#dialog_underconstruction").dialog('close');
			$("#dialog_underconstruction_bedankt").dialog({
   					modal : true,
					width: 550,
					resizable: false, 
					dragable: false,
					closeOnEscape: false,
   					open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
				});
		}else{
			alert(msg);	
		}
	});
	
	$('.ui-button').button();
	
	$('.ui-buttonset').buttonset();
	
	$('.example').example(function() {
		return $(this).attr('title');
	});
	
	
});
