$(document).ready(function(){
	$('a.email').nospam();
	
	var topStuff = $("#title").height() + $("#navigation").height();
	$("#work").css("padding-top", (topStuff + 69));
	
	$("#overview a.flip").hover(function() {
		$(this).children("img:first").hide();
	}, function() {
		$(this).children("img:first").show();
	});
	
	$('#title h1 a .replace').each(function() {
		var $this = $(this), text = $this.html();
		$this.hover(function() {
			$this.text("Christine Brandl");
		}, function() {
			$this.html(text);
		});
	});
	
});
