﻿<!-- // Hiding from old browsers

//----------------------------------------//
// Author: Mehdiyev Turgut                //
// Company: Silverkey Technologies        //
// Date: 01/14/2009                       //
//----------------------------------------//

var scrollSpeed = 1;

current = (scrollSpeed)

StartScroller = function() {
    document.getElementById("sContent").style.top = 0;
    window.setTimeout("window.setInterval('Scroll()', 75)", 3000);
}

Scroll = function() {
    var obj = document.getElementById('sContent');

    if (-parseInt(obj.style.top) < obj.offsetHeight) {
        obj.style.top = parseInt(obj.style.top) - scrollSpeed + 'px';
    }
    else {
    var parent = document.getElementById('sContainer');
        obj.style.top = document.getElementById("sContainer").offsetHeight + 'px';
    }
}

function stop() {scrollSpeed = 0;}

function scroll() {scrollSpeed = current;}   
--> 


