// JavaScript Document
var theProfiles = new Array() 

theProfiles[0] = " Deloitte Technology Fast 500 List - 2008 |Ranked No. 57 II |/assets/images/deloitte_sm.jpg ";
theProfiles[1] = " Inc. 500 Rankings - 2008 |Ranked No. 182 Overall |/assets/images/inc500_sm.jpg ";
theProfiles[2] = " Inc. 500 Rankings - 2008|Ranked No. 9 in Top 100 Retail Companies |/assets/images/inc500_sm.jpg ";
theProfiles[3] = " Inc. 500 Rankings - 2007 |Ranked No. 57 Overall |/assets/images/inc500_sm.jpg";
theProfiles[4] = " Inc. 500 Rankings - 2007|Ranked No. 5 in Top Companies in Telecommunications |/assets/images/inc500_sm.jpg ";
theProfiles[5] = " Inc. 500 Rankings - 2007|Ranked No. 14 in Southeast Inc. 500 Companies |/assets/images/inc500_sm.jpg ";
theProfiles[6] = " ACC Business Top Dealer Achievement |2005, 2006, 2007|/assets/images/ACCbusiness_sm.jpg ";
theProfiles[7] = " Covad Partner of Excellence |2005, 2006 |/assets/images/covad_sm.jpg ";
theProfiles[8] = " Deltacom Dealer Roundtable|2005, 2006 |/assets/images/deltacom_sm.jpg ";
theProfiles[9] = " D-Link Diamond Partner |2007, 2008 |/assets/images/Dlink_sm.jpg ";
theProfiles[10] = " NewEdge Networks MVP |2004, 2005, 2006 |/assets/images/newedge_sm.jpg ";
theProfiles[11] = " NewEdge Networks Advisory Council |2007, 2008 |/assets/images/newedge_sm.jpg ";
theProfiles[12] = " NuVox Dealer Advisory Board|2005, 2006 |/assets/images/nuvox_sm.jpg ";
//theProfiles[13] = " | | "
//theProfiles[14] = " | | "
//theProfiles[15] = " | | "

var j = 0
var p = theProfiles.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
 
}
var whichProfile = Math.round(Math.random()*(p-1));
var myArray=theProfiles[whichProfile].split("|");

document.write('<table width="180"  border="0" cellpadding="5" cellspacing="0">');
document.write('  <tr>');
document.write('    <td align="center"><img src="'+myArray[2]+'" border="0"></td>');
document.write('  </tr>');
document.write('  <tr>');
document.write('    <td valign="top"><strong>'+myArray[0]+'</strong><br>'+myArray[1]+'</td>');
document.write('  </tr>');
document.write('</table>');
