var blurbArray = new Array("Backed by <span class=\"homeGreetingYellow\">more than 154 years of manufacturing and service excellence,</span> we continue to build on our long-standing tradition of precision manufacturing and logistics solutions for today's most crucial applications.","Yet, we keep a <span class=\"homeGreetingYellow\">watchful eye toward the future,</span> investing in leading-edge technologies and applying our expertise in newer break-through markets, such as alternative energy.","<span class=\"homeGreetingYellow\">With more than 60 locations on four continents worldwide,</span> our 4,800 employees deliver on our promise to our customers, ensuring exacting performance, superior support and service, and impactful results.");
var curr_element_ = 0;
var nxt_element_;
function startBlurbRotate(position)
{
    var in_position = (position == 0) ? 1 : 0;
    if(curr_element_ > blurbArray.length-1)
    {
        curr_element_ = 0;
        nxt_element_ = 1;
    }
    else if(curr_element_ == blurbArray.length-1)
        nxt_element_ = 0;
    else
        nxt_element_ = curr_element_ + 1;
    if(position)
    {
        var curr = "blurb1";
        var next = "blurb2"
    }
    else
    {
        var curr = "blurb2";
        var next = "blurb1";
    }
    try{ 
        $(curr).innerHTML = blurbArray[curr_element_];
        $(next).innerHTML = blurbArray[nxt_element_];
        var c = setTimeout("Effect.Fade(" + curr +")",10000);
        var n = setTimeout("$(" + next + ").style.display = 'block'",12000);
        curr_element_++;	
        }
    catch(e){}
    var r = setTimeout("startBlurbRotate(" + in_position + ")",25000);
}
startBlurbRotate(1);

