<!--

    var prevRecord = 1;
    var nextRecord = 2;
    var onDiv = false;
    var lastImage = 0;
    var thisImage = 0;

    /***********************************************
    * IFRAME Scroller script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/

    //Specify speed of scroll. Larger=faster (ie: 5)
    var currentSpeed=2;
    var cache=2;
    var direction=1;

    function initializeScroller(){
        dataobj=document.all? document.all.datacontainer : document.getElementById('products');
        dataobj.style.left = "0px";
        scrollDiv();
    }

    function scrollDiv(){
        thelength=dataobj.offsetWidth;
        if (Products.length < 4) {
            currentSpeed=0;
            cache = 0;
        }
        if ((parseInt(dataobj.style.left)<(width-389)*(-1) && direction == 1) || parseInt(dataobj.style.left) > 3 && direction == -1) {
            direction = -direction;
        }
        dataobj.style.left=parseInt(dataobj.style.left)-(direction*currentSpeed)+"px";
        setTimeout("scrollDiv()",40);
    }

    function mouseMove(x){
        lastImage = thisImage;
        if (lastImage > x){
            //go right
            if (direction == -1){
                currentSpeed = currentSpeed+2;
            } else {
                direction = -1;
                currentSpeed = cache;
            }
        } else if (lastImage < x){
            if (direction == 1){
                currentSpeed++;
            } else {
                direction = 1;
                currentSpeed = currentSpeed+2;
            }
        }
        thisImage = x;
    }

//-->