$(function(){

	$('#signup-submit').click(function(){
		$.get(
			"signup-ajax.php", 
			
			{
				firstname:$('#signup-first-name').val(),
				lastname:$('#signup-last-name').val(),
				email:$('#signup-email').val(),
				comment:$('#signup-comment').val()
			},
			
			function(data)
			{
				$('#signup-msg').html(data);
			}
		);
	});
	
	$('#signup input, #signup textarea').each(function(){
		var val=$(this).val();		
		var color=$(this).css('color');
		$(this).attr('val',val);
		$(this).attr('origColor',color);
		$(this).focus(function(){
			if ($(this).val()==val) $(this).val("");
			$(this).css('color','#000');
		});
		$(this).blur(function(){			
			if ($(this).val()==""){
				 $(this).val(val);
				$(this).css('color', color);
			}
		});
	});
	
	$('#signup-reset').click(function(){
		$('#signup input, #signup textarea').each(function(){
			$(this).val($(this).attr('val'));
			$(this).css('color',$(this).attr('origColor'));
		});
	});


});
