$(document).ready(function() {
if ($('.paging .mid table tr td').length) {
    centerPagination();
}

//rotating images
if ($('#rotatingimages').length) {
    setInterval("slideRight('#rotatingimages')", 5000);
}

});

function centerPagination() {
    width = 0;
    $('.paging .mid table tr td').each(function() {
        width += 4;
    });
    if (width < 208) {
        $('.paging .mid table').css('width', width + 'px');
    }
}

