// JavaScript Document
function MoreInfo(GameID)
{
	//<a href="D.'" onclick="MoreInfo();">(more...)</a></div>';
					//echo '<a href="http://google.com/" onclick="return GB_showCenter("Google", 

  $.ajax({
   url: "moreinfo.php?gameid="+GameID,
   success: function(data)
   {
	  $("#moreinfo" ).html(data);
  	  $("#moreinfo" ).dialog({ modal: true });
	  $("#moreinfo" ).dialog({ width: '700px' });
	  $("#moreinfo" ).dialog({ width: '600px' });
	  $("#moreinfo" ).dialog({ title: '' });
	  $("#moreinfo" ).dialog({ buttons: { "Save": function() { SaveTitle(); } } });
	  $("#moreinfo" ).dialog({ closeOnEscape: true });
	  $("#moreinfo" ).dialog({ resizable: false });
	  $("#moreinfo" ).dialog({ draggable: false });
//	  $('#moreinfo').position().top=$('#info'+).position().top-10;
	  $('#moreinfo').show();
   }
  });



  <!-- $('#moreinfo').dialog();-->

$('#thumbs').delegate('img','click', function(){
$('#largeImage').attr('src',$(this).attr('src').replace('thumb','large'));
$('#description2').html($(this).attr('alt'));
});


}


