/* Copyright (c) 2006 Tibor Claassen
 *
 * der-peruanische-weg.de
 *
 * @author	Tibor Claassen
 * @author	tibor@imagerator.com
 * @date	2006-05-28
 */

/*
 * Invoked by the onLoad-Handler of the <body>-tag.
 * Entry point for the application.
 */
 

function main(index) {
	
	try {
        var hoehe = document.documentElement.clientHeight-377;
		var up = new com.imagerator.Button("img/upArrow" + index + ".gif","img/upArrow_over" + index + ".gif", 17, 14, "Scroll up");
		var down = new com.imagerator.Button("img/downArrow" + index + ".gif","img/downArrow_over" + index + ".gif", 17, 14, "Scroll down");
		var scrollbar = new com.imagerator.ScrollBar(up, down, "img/scrollBar" + index + ".gif", "img/scrollTrack" + index + ".gif", 355);    
		var scrollpane = new com.imagerator.ScrollPane("main", "display", "content", scrollbar, 590, hoehe, -40);   
	}
	catch(error) {
		
		return false;
	}	
}

