$(document).ready(function() {
    $('input[type=button],input[type=submit],input[type=reset],button').button();
    $('input[type=text],select,textarea,input[type=password],select,fieldset,legend,table.special').addClass('ui-corner-all');
    $('.imgTD img').addClass('img_normal');
    $('.mini').hover(
        function() {
            $(this).addClass('ui-corner-all');
        });
});

