﻿(function(jQuery)
{
    jQuery.fixTextBoxAlignment = function()
    {
        if (jQuery.browser.mozilla || jQuery.browser.msie)
        {
            jQuery(function()
            {
                jQuery('input[type=text]').add('input[type=password').each(function()
                {
                    jQuery(this).css('padding-top', '4px').css('height', jQuery(this).height() - 4 + 'px'); 
                });
            });
        }
    };
})(jQuery);
