window.addEvent('domready', function() {
	//preload images
	var aPreLoad = new Array();
	var aPreLoadi = 0;
 
	//do rollover
	$$('img.roll').each(function(el){
		//let's preload
		aPreLoad[aPreLoadi] = new Image();
		aPreLoad[aPreLoadi].src = el.src.replace(el.src.replace('_out', '_over'));
		aPreLoadi++;
 
		el.addEvent('mouseover',function(){
			this.setAttribute('src',this.src.replace('_out', '_over'));
		});
 
		el.addEvent('mouseout',function(){
			this.setAttribute('src',this.src.replace('_over', '_out'));
		});
	});
});


var autoLoad=new Array();
autoLoad[1]=new Image();
autoLoad[1].src='img/center/block_ask_star/decor_question_hover.gif';