$(document).ready(function(){
	$("#StartNewGame").click(function(){
		$.ajax({
		  url: 'http://www.pegamoosegames.com/games/playground/dressup/getdressupitems.php',
		  async: false,
		  dataType: 'html',
		  success: function (result) {
			$("#Parts").html(result);
		  }
		});
	});
});


function ReadXMLEntry (xmlFile,tagName,tagNum,childNode)
{
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.open("GET",xmlFile,false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;

value = xmlDoc.getElementsByTagName(tagName)[tagNum];
return value;

}
