$(document).ready(function(){
	/*
	 * add the focus highlights to all input controls on the page with a class of .fade
	 */
	$(".fade").focus(function() {
		$(this).highlightFade({start: "#FFF", end:"#ccc", speed: 200});
	});

	$(".fade").blur(function() {
		$(this).highlightFade({start: "#EFEFF4", end:"#fff", speed: 200});
	});
});
