$(document).ready(function(){
	x = $("#footer img");
	x.fadeTo(0,0.5);
	x.hover(
		function(){ $(this).fadeTo(600,1) },
		function(){ $(this).fadeTo(600,0.5) }
	);
	
	mail = $("a.mail");
	mail.html(mail.html().replace(' -at- ','@').replace(' -dot- ','.'));
});

