window.addEvent('domready', function()
{
	var preLoadArray = new Array();
	var preLoadNum = 0;

    // Rollover script
	$$('img.roll', 'input.roll').each(function(el){
        // Preloader
        preLoadArray[preLoadNum] = new Image();
        preLoadArray[preLoadNum].src = el.src.replace('_off', '_on');
		//preLoadArray[preLoadNum].inject($("preload-images"));
        preLoadNum++;

        el.addEvent('mouseover',function(){
            this.setAttribute('src',this.src.replace('_off', '_on'));
        });

        el.addEvent('mouseout',function(){
            this.setAttribute('src',this.src.replace('_on','_off'));
        });
    });	

 	
 	$$('img.preload', 'input.preload').each(function(el){
        // Preloader
        preLoadArray[preLoadNum] = new Image();
        preLoadArray[preLoadNum].src = el.src.replace('_off', '_on');
        preLoadNum++;
    });
});