$(document).ready(function() {

	$("span.post").each(function() {
		txt = $(this).text();
		txt = txt.replace('[snabel-a]','@');
		txt = txt.replace("[dot]",".");
		$(this).text(txt);
	});
	$("span.post").live("click", function() {
		sti = 'mailto:'+$(this).text();
		location.href = sti
	});
	$("#logo img").hide().fadeIn(2000);
	
	var $scrollingDiv = $("#logo");
	$(window).scroll(function(){
	       $scrollingDiv.stop().animate({"marginTop": ($(window).scrollTop() + 10) + "px"}, "slow" );
	});
});