//初始化dialog
$(document).ready(function(){
	$('#box').dialog({
		width: 200,
		height: 150,
		bgiframe: true,
		autoOpen: false,
		modal: true,
		resizable: true,
		title: '提示信息',
		buttons: {
			"确定": function() {
				$(this).dialog('close');
			}
		}
	});
	$('#button').click(function(){
		$('#box').text('提示信息');
		$('#box').dialog('open');
	});
});

//图片弹出
$(document).ready(function(){
	$("#example1 a[rel='example1']").colorbox();
	$("#example2").colorbox();
});

//alert框以及confirm框初始化
$(function(){
	$("#example3").click(function(){
		$.alert('警告信息',function(){
		});
	});
	$("#example4").click(function(){
		$.confirm('询问问题',function(){
			$.alert('你点击了确定');
		});
	});
});
