/* * * Style for input, TextArea, select. * update: 1/15,2009 * */jQuery(function() {        $('input[type=password], input[type=text]').addClass('jText');        $('input[type=password], input[type=text], textarea').focus(function() {                $(this).addClass('jFocus');        });        $('input[type=password], input[type=text], textarea').blur(function() {                if ($(this).find('.jFocus')) {                        $(this).removeClass('jFocus');                }        });});