$(document).ready(function(){

 $('#dialog').dialog({
        modal: true,
        open: function ()
        {
            $(this).html("<h1 style='color:#C00;font-size:30px;line-height:39px;'>Sorry, this store is still under construction.</h1>");
        },         
        height: 300,
        width: 550,
        title: 'Coming Soon',
		 buttons: { "Ok": function() { $(this).dialog("close"); } }});


});
