/**
 * @version $Id: bot_oe_scroll.js,v 1.3 2007/09/17 09:39:06 cg Exp $
 * @package oenobiol.botoescroll
 * @copyright Copyright (C) 2006 BROCELIA. All rights reserved.
 */

window.addEvent('load', function() {
	var c = $$('.botoescroll');
	for(var i=0;i<c.length;i++) {
		var params = c[i].id.split('_');
		botoescroll(c[i], {height:params[1], width:params[2], top:params[3], thumbHeight:params[4]});
	}
});

