$(document).ready(function() {  
	
	
	$('table.form input').focus (
		function () {
			$(this).addClass('active');
		}
	);
	
	$('table.form input').blur (
		function () {
			$(this).removeClass('active');
		}
	);
	
	
	
	
	$('table.form textarea').focus (
		function () {
			$(this).addClass('active');
		}
	);
	
	$('table.form textarea').blur (
		function () {
			$(this).removeClass('active');
		}
	);
	
	
	
	$('table.form select').focus (
		function () {
			$(this).addClass('active');
		}
	);
	
	$('table.form select').blur (
		function () {
			$(this).removeClass('active');
		}
	);
	

});