$(document).ready(function(){
	$("#intro .image h1").append("<em></em>");
	$("#intro .image h1").hover(function() {
		$(this).find("em").animate({opacity: "hide", top: "0"}, "slow");
	}, function() {
		$(this).find("em").animate({opacity: "show", top: "60"}, "slow");
	});
	$("#header .intext").toggleVal();
});