	function fixmail() {
		$('a.email').each(function() {
				e = this.rel.replace('/','@');
				this.href = 'mailto:' + e;
				$(this).text(e);
			});
			$('a.email2').each(function() {
				e = this.rel.replace('/','@');
				this.href = 'mailto:' + e;
			});
	}

	function blindBackground() {
		$('#navi').hide();
		$('#content img').hide();
		$('#content h1').hide();
		$('#outerContent').hide();
		$('#content').css('background-color','transparent')
		
		$('#back2').delay(1000).fadeIn(1500,function(){
			$('#outerContent').delay(300).fadeIn(1000);
			$('#navi').delay(0).fadeIn(1500);
			
			$('#content').delay(500, function(){
				var start = 0;
				$('#content img').each(function(e){
					$(this).delay((start*150)).fadeIn(500);
					start++;
					})
				
				
				var startH = 0;
				$('#content h1').each(function(e){
					$(this).delay((startH*650)).fadeIn(500);
					startH++;
					})	
				})
			
			
				
					
			});
	}