/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/


// jQuery object
jQuery.inputHighlight = function(color){
	$("input").each(function(){
		$(this).focus(function(){
			$(this).css({"background" : color});
		});
		$(this).blur(function(){
			$(this).css({"background" : "white"});
		});
	});
}
