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

	var fadethis = $$('div.fadethis');
	fadethis.each(function(item) {
		item.addEvent('mouseover', function() {
			this.getFirst('div.hover').setStyle('display','block');
		});
		item.addEvent('mouseout', function() {
			this.getFirst('div.hover').setStyle('display','none');
		});
	});
	
});

