// JavaScript Document
var scroller  = null;
var scrollbar = null;
var SCROLLER = {
	init : function(){
		if ($chk($('contPrueba'))){
			scroller  = new jsScroller($("contPrueba"), 383, 185);
			scrollbar = new jsScrollbar($("contScroller"), scroller, false);
		}
	}
}

/* LOAD */

function addLoadEvent(fn)
{
	var old = window.onload;
	if(typeof window.onload != 'function')
		window.onload = fn;
	else
	window.onload = function()
	{
		old();
		fn();
	}
}

addLoadEvent( function() { SCROLLER.init(); } );