

(function() {
	window.addEvent('domready',function() {
		$$('.fade-area').each(function(container) {
			container.getChildren().each(function(child) {
				var siblings = child.getParent().getChildren().erase(child);
				child.addEvents({
					mouseenter: function() { siblings.getElement('a img').tween('opacity',0.5); },
					mouseleave: function() { siblings.getElement('a img').tween('opacity',1);  }
				});
			});
		});
	});
})();

Cufon.replace('h1, h2, h3');
Cufon.now();

