// JavaScript Document
$(document).ready(function () {
	
	$("#libraryDisclaimer").dialog({
		autoOpen: false,
		bgiframe: true,
		resizable: false,
		modal: true,
		show: "drop",
		width: 500, 
		overlay: {
			backgroundColor: '#000',
			opacity: 0.5
		},
		buttons: {
			'Ok' : function() {
				$(this).dialog('close');
			}
		}
	});

});
