var	ahscroller=null;
//var	displayTime	=	6;

window.addEvent('load', function()	{
	initPage();
	doAddMenus();
	initAdmin();
});

function	initPage()	{
	initArticleHilights();
}


function	initArticleHilights()	{
	var	thescript 	=	new Asset.javascript('/resources/tclib/articlelargedisplay/tcArticlelargedisplay.js', { 'onLoad' : createScroller});
}

function	createScroller()	{
	ahscroller	=	new		tcArticlelargedisplay( 'ah_window', 'prevsheet', 'nextsheet', 'positiondot', '/resources/tclib/articlelargedisplay/doton.png', '/resources/tclib/articlelargedisplay/dotoff.png', 'horizontal');
	ahscroller.startAutoScroll(1000 * displayTime);
}

