window.addEvent('domready', function() {

	agent = navigator.userAgent.toLowerCase();
	if (!((agent.indexOf("msie") != -1) && (agent.indexOf("opera") == -1))) {
		$$('.fadeout').each(function(liImg) {
			aimg = liImg.getElement('img') ;
		    var fadeFx = new Fx.Style(aimg, 'opacity', {wait:false, duration:500} ).set(1);
		    aimg.addEvents({
		        'mouseover': function(){
		            fadeFx.start(0.1);
			    },
			    'mouseout': function(){
		             fadeFx.start(1);
		         }
		    });
		});
		
		$$('.fadein').each(function(liImg) {
			aimg = liImg.getElement('img') ;
		    var fadeFx = new Fx.Style(aimg, 'opacity', {wait:false, duration:500} ).set(0.1);
		    aimg.addEvents({
		        'mouseover': function(){
		            fadeFx.start(1);
			    },
			    'mouseout': function(){
		             fadeFx.start(0.1);
		         }
		    });
		});
	}	
	 
});