$(document).ready(function(){
	
	/* display dialog box */
	if ($('#dialog').length)
	{
		$("#dialog").dialog({
			bgiframe: true,
			modal: true,
			width:400,
			draggable: false,
			resizable: false,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}
		});
	}
	
	/*
	if ( $('#logorotation').length ) {
			$('#logorotation').show();
			$('#logorotation').cycle({
				fx:    'fade', 
				pause:  1,
				random:  1
			});

	}
	*/

});


