jQuery(document).ready(function($){

$('#contact').ajaxForm({
	target: '#message',
	success: function() {
		$('#message').fadeIn('slow');
		$('#message').css('border-color', '#EE1C25');
		}
	});
	
	$("input, textarea").focus(function() { $(this).css('background', '#FFFFFF'); });
	$("input, textarea").blur(function() {	$(this).css('background', '#F9F9F9'); });

}); 