$(document).ready(function(){
	$('#iwantcomment').click(function(){
		$('#comment1form').show('slow');	
		$(this).hide('slow');
	});
});

