$(function() {
	
	$('<a href="#" title="Contact Me!" class="button contactbutton">Contact Me!</a>').appendTo('#buttonarea');
	
	$('#holding').hide();
	$('#contactme').hide();
	$('a.button').show();
	
	$('#holding').fadeIn(1000);
	
	$('a.button').click(
		function() {
			$("#contactme").animate({"opacity": "toggle", "height" : "toggle"}, 300);
		}
	);	
});
