$(function(){ //相当于 $(document).ready(function(){  比 window.onload  更好
// Dialog			
				$('#dialog').dialog({
				  modal:true, //遮罩层
				  resizable:false, //不能改变窗口大小
					autoOpen: true, //true //启动运行
					width: 500,
					overlay:{
              opacity:0.1,
              background:"red"
					},
					buttons: {
						"Ok": function() { 
							$(this).dialog("close"); 
						}
					}
				});

// Dialog Link
	$('#dialog_link').click(function(){
			$('#dialog').dialog('open');
					return true;
			});
});



