window.addEvent('domready',function(){
	if(!Browser.ie6){
		$$('#homeThumbs a').addEvent('mouseover',function(e){
			e.stop();
			this.getElement('img').tween('opacity',0);
		});
		$$('#homeThumbs a').addEvent('mouseout',function(e){
			e.stop();
			this.getElement('img').tween('opacity',1);
		});
	}
});
