// JavaScript Document

$(document).ready(function() {
	
	$("a img").each(function() {
		$(this).parent("a").hover(function(){
			$("img", this).stop().fadeTo(200, 0.5);
		},function(){
			$("img", this).stop().fadeTo(500, 1);
		});
	})
	
	Cufon.replace('h1');
	Cufon.replace('h2');
	Cufon.replace('h3');
	Cufon.replace('h4');
	
});
