var feature_array = new Array();
feature_array[0] = ({projectTitle:"Wellington Compressor Station", 
	projectThumbnail:"images/featured-projects/wellington-thumb.jpg", 
	projectDesc:"Augusta Engineering developed the project scope write-up working with the client and also provided the engineering, design and construction support services to complete an electrical rebuild of Wellington Compressor Station.", 
	projectLink:"portfolio/wellington.html"});
feature_array[1] = ({projectTitle:"Elkem Furnace 15 Upgrade", 
	projectThumbnail:"images/featured-projects/elkem-thumb.jpg", 
	projectDesc:"The staff of Augusta Engineering and Design completed the Civil/Structural and high voltage electrical phases of the furnace 15 upgrade project.", 
	projectLink:"portfolio/elkem.html"});
feature_array[2] = ({projectTitle:"Cardinal States Gathering AMINES Plant Expansion", 
	projectThumbnail:"images/featured-projects/amines-thumb.jpg", 
	projectDesc:"Cardinal States Gathering Company, owned by Consol Energy intended to expand its CO2 plant at Grant Compressor Station in Mingo County, West Virginia. The Amines Plant Project at Grant Compressor Station will increase the plant capacity by replacing the existing, smaller Amines plant with a newer, larger and more efficient facility.", 
	projectLink:"portfolio/amines.html"});
	
function get_feature(){
	var numItems = feature_array.length - 1;
	var rndNum = Math.round(Math.random()*numItems);

	document.write("<p>" + feature_array[rndNum].projectTitle + "</p>");
	document.write("<img src='" + feature_array[rndNum].projectThumbnail + "' />");
	document.write("<p>" + feature_array[rndNum].projectDesc + "</p>");
	document.write("<p><a href='" + feature_array[rndNum].projectLink + " '>Learn more ...</a></p>");
}