$(function(){
	/*DIALOG*/
	$('.dialog').dialog({
		bgiframe: true,
		modal: true,
		resizable: false,		
		overlay: {
			backgroundColor: '#000',
			opacity: 0.5
		},
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});
	
/* Disappearing messages */
	$('.message').css({ cursor: 'pointer' }).click(function(){ $(this).slideUp(); });
	
});

$("#tabs").tabs();
$(".datepicker").datepicker({ 
	dateFormat: 'yy-mm-dd' 
	});