// Start jQuery

$(document).ready(function() {
						   
		$('.text').click(function() {
	$('.text').removeClass('active');
	  $(this).addClass('active');
	}, function() {
	  $(this).removeClass('active');
	}); // Form field highlight Active Field


		$('.input').click(function() {
	$('.input').removeClass('active');
	  $(this).addClass('active');
	}, function() {
	  $(this).removeClass('active');
	}); // Form field highlight Active Field
		
}); // End jQuery
