
/* highlightform.js */

$(document).ready(function(){
		$('input').focus(function() {
			$(this)
				.parent().addClass('highlight')
		});

		$('input').blur(function(){
			$(this)
				.parent().removeClass('highlight')
		});
		
		$('select').focus(function() {
			$(this)
				.parent().addClass('highlight')
		});

		$('select').blur(function(){
			$(this)
				.parent().removeClass('highlight')
		});
		
		$('textarea').focus(function() {
			$(this)
				.parent().addClass('highlight')
		});

		$('textarea').blur(function(){
			$(this)
				.parent().removeClass('highlight')
		});
	});