function doResize() {
    var $marginTop = ((jQuery(window).height() - 650) / 2 + 'px');
    if($(window).height() > 650){
        $('body').css({'margin-top': $marginTop});
    }
}

$(document).ready(function()
{
    // Center website
    doResize();

    // Mouse overs
    if($('.ro').length > 0) {
        $('.ro').imghover({suffix: '-over'});
    }

    // Initialise the scrollpanes
    if($('#scrollbar1').length > 0) {
        $('#scrollbar1').tinyscrollbar({sizethumb: 41});
    }
});

$(window).resize(doResize);
