﻿/*------------------------------------------------------------------------------------------------
Panel Loader
				
Author:			Che de Bruin
Date:	        07-15-2008
Description:	Load panels
------------------------------------------------------------------------------------------------*/

function SectionScroll(SectionName, Direction) {
    if(Direction == 'Left') document.getElementById(SectionName).scrollLeft -= 10
    if(Direction == 'Right') document.getElementById(SectionName).scrollLeft += 10
	ScrollDelay = setTimeout("SectionScroll('" + SectionName + "','" + Direction + "')",20);
}

function SectionScrollCancel() {
    clearTimeout(ScrollDelay);
}



