$(document).ready(function() {	
	$('#droidLogo').click(function() {
	  	$("#droidLogoDialog").dialog({
			title: 'Hey there!',
			autoOpen:true,
			modal: true,
			buttons: {"Ok": function() { $(this).dialog("close"); }}
		});
	});
  });


