<!--

// **** CUSTOMER 

     function getCustomer()     {
          var myCustomer = new Array(
          "<a href='featured/client/jeb/index.htm' title='Featured Customer: JEB Design'><img src='images/featured/client/maccustomer_jeb.jpg' width='211' height='137' alt=''></a>"
		  
		  // **** NOTICE THE ABSENCE OF AN ENDING COMMA FOR LAST ITEM
		  
          );
          document.getElementById("featuredCustomer").innerHTML = myCustomer[Math.round(Math.random()*(myCustomer.length-1))];
     }

// **** TECH TIP

     function getTechTip()     {
          var myTechTip = new Array(
          "<a href='techtip_01.htm' title='Featured Tech Tip: Printer Problems'><img src='images/featured/techtip/Boxes_bottom_tip_printer.jpg' width='211' height='137' alt=''></a>",
		  "<a href='techtip_02.htm' title='Featured Tech Tip: Fonts'><img src='images/featured/techtip/mactip_font.jpg' border='0' width='211' height='137' alt=''></a>"
          );
          document.getElementById("featuredTip").innerHTML = myTechTip[Math.round(Math.random()*(myTechTip.length-1))];
     }


// **** CONSULTANT

     function getConsultant()     {
          var myConsultant = new Array(
          "<a href='consultant1.htm' title='Featured Consultant: Dana Stibolt'><img src='images/featured/consultant/macconsultant_dana.jpg' width='211' height='137' alt=''></a>",
          "<a href='consultant4.htm' title='Featured Consultant: Jason Mininger'><img src='images/featured/consultant/macconsultant_jasonj.gif' width='211' height='137' alt=''></a>",
          "<a href='consultant3.htm' title='Featured Consultant: Mike Harrison'><img src='images/featured/consultant/macconsultant_mikeh.jpg' width='211' height='137' alt=''></a>",
          "<a href='consultant.htm' title='Featured Consultant: Victor Gardella'><img src='images/featured/consultant/macconsultant_victor.jpg' width='211' height='137' alt=''></a>"
          );
          document.getElementById("featuredConsultant").innerHTML = myConsultant[Math.round(Math.random()*(myConsultant.length-1))];
     }
 -->