jQuery(document).ready(function($) { 
	// First Function
	$('.contactForm input')
		.focus(function(){
						$(this).closest('label').css('background-color','#c1a01c');
						});
	$('.contactForm input')
		.blur(function(){
						$(this).closest('label').css('background-color','#666');
						});
	$('.contactForm #input_1_5 input')
		.focus(function(){
						$(this).closest('label').css('background-color','#000');
						});
});
