$(document).ready(function(){
		$.each(listProps,function(){
			// break the vars into array...
			var allDets = this.split('|');

			// List details...
			var propRef = 		allDets[0];
			var propStyle = 	allDets[1]; // House, flat...
			var propRoad =		allDets[2];
			var propTown =		allDets[3];
			var propPrice = 	allDets[4];
			var propDescript =	allDets[5];
			var propBull1 = 	allDets[6]; // Bullets
			var propBull2 = 	allDets[7];
			var propBull3 =		allDets[8];
			var propBull4 = 	allDets[9];
			var propBull5 = 	allDets[10];
			var propBull6 = 	allDets[11]; //!Bullets
			var propBeds = 		allDets[12];

			var txtInsert = 	"<div class=\"mainpropertybox\"><div class=\"mainpropertyheader\"><p class=\"homecopy\" style=\"color:#FFFFFF; font-size:14px; margin-left:12px; margin-top:8px; width:390px; float:left;\">" + propTown + " - " + propBeds + " Bed " + propStyle + "</p><p class=\"homecopy\" style=\"color:#FFFFFF; font-size:14px; margin-left:10px; margin-top:8px; text-align:right; margin-right:45px; float:right;\"> &pound;" + propPrice + "pcm</p></div><div class=\"mainproppic\" style=\"margin-left:10px; margin-top:12px;\"><a class=\"homelink\" href=\"property.php?prop=" + propRef + "\" title=\"" + propBeds + " bed " + propStyle + ", " + propTown + "\"><img src=\"/xml/" + propRef + ".jpg\" style=\"overflow:hidden;width:189px;height:143px;\" height=\"150\" alt=\"" + propBeds + " bed " + propStyle + ", " + propTown + "\" /></a></div><div class=\"mainproptextbox\" style=\"margin-top:15px;\"><p class=\"homecopy\" style=\"color:#51141b; font-size:12px; font-weight:bold; margin-top:0px;\">Property Details</p><p class=\"normal\" style=\"color: #666; font-size:12px; float:left; line-height:16px; margin-top:0px; display:block; \">" + propDescript + "</p><div class=\"mainproplinks\" style=\"text-align:center; padding-top:8px;\"><a class=\"homelink\" href=\"property.php?prop=" + propRef + "\" title=\"" + propBeds + " bed " + propStyle + ", " + propTown + "\">More Details</a></div><div class=\"mainproplinks\" style=\"text-align:center; padding-top:8px; margin-left:10px;\"><p class=\"homecopy\" style=\"color: #333333; font-size:12px; margin-top:0px;\">Contact The Truro Branch on 01872 272716 </p></div></div></div>";

			$('.maintext').append(txtInsert); // Insert HTML
		});
});