// JavaScript Document

window.onload = intilScrip;

function intilScrip(){
	document.getElementById("btLeft").onmouseover = srollLeft;
	document.getElementById("btRight").onmouseover = srollRight;
	document.getElementById("scrollTable").onmouseover = scrollOver;
	document.getElementById("scrollTable").onmouseout = scrollOut;
}


function scrollOver(){
	tableScroll = document.getElementById("scrollTable");
	tableScroll.stop();
}

function scrollOut(){
	tableScroll = document.getElementById("scrollTable");
	tableScroll.start();
}

function srollLeft(){
	tableScroll = document.getElementById("scrollTable");
	tableScroll.direction = "left";
}

function srollRight(){
	tableScroll = document.getElementById("scrollTable");
	tableScroll.direction = "right";
}

