/**
 * @author jsambells
 */
$(document).ready(function(){
    
	var status = $('#status');
	
	if( !status || 0 == status.children().length ) {
		return;
	}
	
	status.dialog({
        title: 'Attention!',
        buttons: {
            'Close': function(){
                $(this).dialog('close');
            }
        }
    });
});
