// Timing variables
					   var TIME_WAIT_BETWEEN = 200;
					   var TIME_TRANSITION   = 120;
					   var TIME_WAIT_ON      = 6200;
					   
					   // Link Variables
					   var Link_Names = new Array("&quot;FinePoint Graphics’s service is one of the best in the industry. Whenever the time, whatever the work FinePoint was there for our organization with great responsibly and professionalism.<br><br>Thank you guys, as always. &quot;:<br><b>Alex</b><br>Bayis Leplietis, @ Home for orphaned girls.","&quot;Sol, the ads are GEVALDIG! The feedback is beyond words. You really promote my store in many good ways.<br><br>Thanks loads!&quot;:<br><b>Y. Kohn</b><br>Meoros Judaica","&quot;First I must tell you how beautiful and dynamic the designs are and on such short notice and a very very fair price. We sincerely appreciate it.<br><br>Thank you once again for coming to our aid in our time of desperate need.&quot;:<br><b>R. Meisels</b><br>Matzasi","&quot;I appreciate your prompt service and beautiful work!&quot;:<br><b>R. Bronner</b>","&quot;I just told my partner that we couldn’t have picked a better Graphic Design firm, to re-brand our company’s image, and our recent ad campaign.<br><br>Keep it up!&quot;:<br><b>Eli @ flyl4l.com</b>");
					   var Link_URL = new Array("#","#","#","#","#");
					   var Link_Count = Link_Names.length;
					   var Link_Current = 0;
					   
					   // Color Variables
					   var lColor_Values = new Array("70B2D4","A9D0E5","000000");
					   var cColor_Values = new Array("4F9CB1", "AFCC51","006B94");
					   var Color_Count = 3;
					   var Color_Current = -1;
					   
					   // Object Variables
					   var objLabel = document.getElementById("lblTicker");
					   var objContent = document.getElementById("lblContent");
					   var objLink = document.getElementById("aLink");
					   
					   
					   
					   // Increment the color of the ticker (according to the predefined variables)
					   function IncrementTickerColor() {
					      
					      // Ticker has just started, or has been restarted... make the information invisible (then wait)
					      if (Color_Current == -1) {
					         objLabel.innerHTML = "&nbsp;";
					         objContent.innerHTML = "&nbsp;";
					         objLink.href = "#";
					         Color_Current = 0
					         window.setTimeout("IncrementTickerColor()", TIME_WAIT_BETWEEN);
					         
					      // Ticker is at the first position, load the current colors and values and display the current values (then wait)
					      } else if (Color_Current == 0) {
					         //objLink.style.color = Color_Values[Color_Current];
					         //objLabel.style.color = Color_Values[Color_Current];
					         //objContent.style.color = Color_Values[Color_Current];
					         IncrementTickerContent();
					         Color_Current = Color_Current + 1;
					         window.setTimeout("IncrementTickerColor()", TIME_TRANSITION);
					         
					      // Ticker has completed the cycle, loop back to the beginning of the cycle
					      } else if (Color_Current > (Color_Count * 2)) {
					         objLink.href = "#";
					         objLabel.innerHTML = "&nbsp;";
					         objContent.innerHTML = "&nbsp;";
					         Color_Current = -1
					         IncrementTickerColor();
					         
					      // Ticker is at the MID point of the cycle... stop here for a while to show the contents to the user
					      } else if (Color_Current == Color_Count) {
					         //objLink.style.color = Color_Values[Color_Current];
					         //objLabel.style.color = Color_Values[Color_Current];  //<< FOR SOME REASON, THIS LINE MAKES THE TEXT "LIGHT BLUE" ON MSIE 5.x ON MAC
					         Color_Current = Color_Current + 1;
					         window.setTimeout("IncrementTickerColor()", TIME_WAIT_ON);
					         
					      // Ticker is in the middle of transitioning colors, change the color and continue to transition
					      } else {
					         if (Color_Current < Color_Count) {
					            
					            objLink.style.color = lColor_Values[Color_Current];
					            objLabel.style.color = lColor_Values[Color_Current];
					            objContent.style.color = cColor_Values[Color_Current];
					         } else {
					            objLink.style.color = lColor_Values[Color_Count - (Color_Current - Color_Count)];
					            objLabel.style.color = lColor_Values[Color_Count - (Color_Current - Color_Count)];
					            objContent.style.color = cColor_Values[Color_Count - (Color_Current - Color_Count)];
					         }
					         Color_Current = Color_Current + 1;
					         window.setTimeout("IncrementTickerColor()", TIME_TRANSITION);
					      }
					   }
					   
					   // Increment the text and link for the ticker (according to the predefined variables)
					   function IncrementTickerContent() {
					      objLabel.innerHTML = Link_Names[Link_Current].split(":")[0];
					      objContent.innerHTML = Link_Names[Link_Current].split(":")[1] ;
					      objLink.href = Link_URL[Link_Current];
					      Link_Current = Link_Current + 1
					      if (Link_Current == Link_Count) { Link_Current = 0; }
					   }
					   
					   // If we have all the required information, start the looping process
					   if ((objLabel != null) && (objLink != null) && (Link_Count > 0) && (Color_Count > 0)) {
					      IncrementTickerColor();
					   }