$(function(){


	// colour on hover
	$('#contact-form input.text, #contact-form textarea').focus(function(){
		$(this).parent().addClass('highlight');
		
		/*.css({
			background: '#89D4FF'
		});*/
	});
	$('#contact-form input.text, #contact-form textarea').blur(function(){
		$(this).parent().removeClass('highlight');
		
		/*.css({
			background: '#ffffff'
		});*/
	});	
	
	

    
    $('#newsletter-submit').hide();
	$('#newsletter-signup input[type="text"]').focus(function(){
		$('#newsletter-submit').fadeIn('slow');
	});

});
