/*
This is the for the news caption on the right side of the bottom of the page
*/
<!-- hide script from non-javascript-enabled browsers

news_caption_right_paragraph = new Array();
var news_caption_right="";

//--------------------------------------------------------------------------------------------------------- 
// Just put your data in between the double quotes in news_caption_left_paragraph[X] - where X is 1 through 10
// 
// To add data use:									news_caption_right_paragraph[XXXXXXXX] = "Hello World!";
// where [XXXXXXXX] is the paragraph number and all of your paragraph is to be put into ONE line
// in between the double quotes ""
// 
// EXAMPLE:	
// news_caption_right_paragraph[1] = "Hello World!";
// news_caption_right_paragraph[2] = "";
// news_caption_right_paragraph[3] = "";
// news_caption_right_paragraph[4] = "";
// news_caption_right_paragraph[5] = "";
// news_caption_right_paragraph[6] = "";
// news_caption_right_paragraph[7] = "";
// news_caption_right_paragraph[8] = "";
// news_caption_right_paragraph[9] = "";
// news_caption_right_paragraph[10] = "";
//
// NOTE: to add vertical spacing use:			news_caption_right_paragraph[X] = " "; <-- notice space
// where [X] is the paragraph number (1 - 5)
//--------------------------------------------------------------------------------------------------------- 
news_caption_right_paragraph[1] = "WCI recently completed a $1,100,000 buildout for General Cable.  This project was a 32,000 sq. ft. office renovation & buildout into existing warehouse.  Included structural building modifications, large conference and break areas.  Multi-phased project in an occupied building.";
news_caption_right_paragraph[2] = "";
news_caption_right_paragraph[3] = "";
news_caption_right_paragraph[4] = "";
news_caption_right_paragraph[5] = "";
news_caption_right_paragraph[6] = "";
news_caption_right_paragraph[7] = "";
news_caption_right_paragraph[8] = "";
news_caption_right_paragraph[9] = "";
news_caption_right_paragraph[10] = "";
//--------------------------------------------------------------------------------------------------------- 

for (var i=1;i<=10;i++)
{
	if (news_caption_right_paragraph[i]!="")
	{
		news_caption_right = "<p>" + news_caption_right + news_caption_right_paragraph[i] + "</p>";
	}
}
document.write(news_caption_right);
// stop hiding -->