// JavaScript Document
$(document).ready(function(){
	$("a#spamTest").click(function(){
		$(this).fadeOut();
		$("dt.spamTest label").fadeOut(function(){
			$("dt.spamTest").html("<img src='./images/spamTest.gif' alt='Loading..' />");
			$("dd.spamTest").html("<input name='spamTest' type='text' />");
		});
		return false;
	});
});