  $(document).ready(function(){    	
    	// gives the html that's inside the div, in this case, the text within, show the dialog if the div is not empty
   		if( $("#promo_text").html() != '')
   		{
   			$("#promo_text").dialog( { position: ['left', 'bottom'], height: 90 } );
   		}
   });

