window.addEvent('domready',function(){
	
	var imgs = $$('img.servContentImg');
	
	imgs.each(function(img) {
		img.addEvent('mouseover', function() {
			this.fade('out');
		});
		
		img.addEvent('mouseout', function() {
			this.fade('in');
		});
	});

});
