﻿        $(document).ready(function() {
$("input:[type=text], input:[type=password], textarea, select").focus(function () {
		$(this).addClass("isHighlighted");	
	});
	$("input:[type=text], input:[type=password], textarea, select").blur(function () {
		$(this).removeClass("isHighlighted");
	});

			
        });
