$(document).ready(function($) {
    // interleaving background for table rows
    $("input").each(function() {
        $(this).addClass($(this).attr('type'));
    });
    $("tr:odd").livequery(function() {
        $(this).removeClass("even");
        $(this).addClass("odd");
    });
    $("tr:even").livequery(function() {
        $(this).removeClass("odd");
        $(this).addClass("even");
    });
    $(":last-child").livequery(function() {
        $(this).addClass("last");
    }).addClass("last");
    $(":first-child").livequery(function() {
        $(this).addClass("first");
    }).addClass("first");
    $("img[style*='float: left'], img[style*='float:left']").addClass('left');
    $("img[style*='float: right'], img[style*='float:right']").addClass('right');
    $("body :hasBorderRadius").radius();
});
