$(document).ready(
    function(){
        $('#rotator').innerfade({
            speed: 0,
            timeout: 4000,
            type: 'sequence',
            containerheight: '190px'
        });
});

function hoverImageOn(id) {
    document.getElementById(id).style.border = '1px solid #e95d0f';
}
function hoverImageOff(id) {
    document.getElementById(id).style.border = '1px solid #808080';
}