$(document).ready(function()
{
    $(':submit, :reset, :button, :image').each(function () {
        var title = $(this).val();
        $(this).attr('title', title);
    });

    $('#logo, #top address, h1, h2, #tm li').each(function () {
        var title = $(this).text();
        $(this).attr('title', title);
    });

    $('ul, ol').each(function () {
        var aaa = $(this).children();
        var bbb = aaa.size()
        for (var i = 0; i < bbb; i++)
        {
            var ccc = i + 1;
            aaa.eq(i).addClass('item' + ccc);
        }
    });

    $(':text').addClass('text');
    $(':password').addClass('text password');
    $(':radio').addClass('radio');
    $(':checkbox').addClass('checkbox');
    $(':submit').addClass('butt submit');
    $(':reset').addClass('butt reset');
    $(':button').addClass('butt button');
    $(':image').addClass('butt image');
    $(':file').addClass('file');

    $('tr th:last-child, tr td:last-child, ul li:last-child, ol li:last-child, dl dd:last-child').addClass('last-child');
});



