$(function() {
	
	$('.page').append('<img src="images/content_top.png" id="content_top" />');
	
	//overlay button
	
	$('#email_tab a').click(function() {
		$('#overlay').animate({ opacity : .9 }).fadeIn();
		$('#emailform').fadeIn();
		return false;
	});
		
	$('#return_home').click(function() {
		$('#overlay').fadeOut();
		$('#emailform').fadeOut();
		return false;
	});
	
		
	
});


