// JavaScript Document

<!-- Start of scroller script
   var scrollCounter = 0;   
function Scroller()
{
	var scrollText  =  "Ace Metal Crafts is a stainless steel fabricator with expertise in laser cutting, forming, welding, sanitary finishes and value engineering.";
	var i = 0;
	while (i++ < 125)
	scrollText =" "+scrollText;
	{
		window.status = scrollText.substring(scrollCounter++,scrollText.length);
        if (scrollCounter == scrollText.length) 
        scrollCounter =0;
        setTimeout("Scroller()", 150);
	}
}
       
// End of scroller script -->


