$(function(){
	$("#flashMessage").dialog({
	autoOpen	:true,
	bgiframe	:true,
	modal		:true,
	draggable	:true,
	resizable	:true,
	show		:'slide',
	hdie		:'slide',
	title		:'Message dialog',
	position	:['center',150]
}).show(null,null,null,function(){
	timer = setTimeout(function(){
		$("#flashMessage").parents(".ui-dialog").remove();
	}, 3500);
	$(".ui-dialog-titlebar-close").click(function() { clearTimeout(timer); });
});



});
