$(document).ready(function(){
	var divID = ["vf1","vf2","vf3","vf4"];		// an array of the elements to be renamed: id's.
	var propNames = [propOne,propTwo,propThree,propFour];		// array of the property details.
	var tt=0;

    $.each(divID, function() {	// Step through the array of elements
		var tsLink = propNames[tt];	// Set the path to the script and property details
		var thisDiv = "#"+this;

		// Get the data from the PHP script
		var exploded = tsLink.split('|'); 	// Blow up the returned string
		var pTitle = exploded[0];			// Title
		var pPrice = exploded[1];			// Price
		var pImg = exploded[2];				// Image
		var pDesc = exploded[3];			// Description
		var pLink = exploded[4];			// Link
		var thisContent = "<div style=\"float:left;margin-top:8px;margin-left:10px;\"><div class=\"vebraimage\" style=\"float:left;position:relative;top:0;height:172px;width:212px;text-decoration:none;\">" + pLink + pImg + "</a><div class=\"vebraheader\" style=\"position:absolute;bottom:0;height:40px;float:left;width:212px;background:#51141b;overflow:hidden;\">" + pLink + "<h1 style=\"font-family:Times New Roman;font-size:12px;color:#FFFFFF;text-decoration:none;margin:6px 5px 2px 10px; padding:0px;\">" + pTitle + " - " + pPrice + "</h1></a><span style=\"font-family:Times New Roman;font-size:11px;color:#FFFFFF;text-decoration:none;margin:0 0 0 10px;padding:0px;\">" + pDesc + "</span></div></div></div>";
		$(thisDiv).html(thisContent);
		tt=tt+1;
    });
});