﻿// JScript File

///////////////////////////////////////////////
///  handleMouseOut(td)
///////////////////////////////////////////////
function onMenuOut(td) {
    // Un-Highlight the Menu Item
    var sImg = td.src.split("_");
    td.src = sImg[0] + "_off1.png";
    //var sImg = td.style.backgroundImage.split("_");
    //td.style.backgroundImage = sImg[0] + "_off.gif)";
}

///////////////////////////////////////////////
///  handleMouseOver(td)
///////////////////////////////////////////////
function onMenuOver(td) {   
    try {             
        // Highlight the Menu Item
        var sImg = td.src.split("_");
        td.src = sImg[0] + "_over1.png";  
        //var sImg = td.style.backgroundImage.split("_");
        //td.style.backgroundImage = sImg[0] + "_over.gif)";
 
    }
    catch(e) {
        //alert("error in onMenuOver(" + td.id + ")");
    }
}

$(document).ready(function(){
		$().serialScroll({
		    target: '#timeLineContainer',
		    event: 'click',
			items:'li',
			prev:'#historyprev',
			next:'#historynext',
			step: 'max',
			offset:0,
			axis: 'x',
			duration: 22000,
			interval: 22000,
			constant: true,
			force:true,
			stop:true,
			lock:false,
			cycle:true, //don't pull back once you reach the end
			jump: true //click on the images to scroll to them
		});
	});
   