// JavaScript Document

	// To add an industry element, change # of elements, and add an [imglable] and [label].

	var I_elements = 14;  // Industry Elements
	
	var imglabels = new Array(
      'Consumer','Education','Oil','Financial','Government',
      'Health','Legal','Manufacturing','Nonprofit','Professional',
      'Construction','Technology','Telecom','Travel');	
	var labels = new Array(
      'Consumer Goods','Education','Energy','Financial','Government',
      'Healthcare','Legal','Manufacturing','Non-Profit','Professional Services',
      'Construction','Technology','Telecommunications','Travel &amp; Entertainment');	

	var r = Math.floor(Math.random()*I_elements+1);

document.write("<div id='IND");
document.write(r);
document.write("' style='display:inline;'><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='left' valign='top'><a href='publicrelationsindustryexperience/index.htm'><img src='images/Ind-");
document.write(imglabels[r-1]);
document.write(".jpg' alt='Learn more about our Public Relations expertise in the ");
document.write(labels[r-1]);
document.write(" industry.' width='180' height='120' border='0'></a></td></tr><tr><td align='left' valign='top'><img src='images/spacer.gif' width='10' height='10'></td></tr><tr><td align='left' valign='top'><p><a href='publicrelationsindustryexperience/index.htm' class='IndustryExpertiseLink'>Learn more about our Public Relations expertise in the ");
document.write(labels[r-1]);
document.write(" industry. </a></p></td></tr></table></div>");

