
function ChangeImage(index, ids)
{
    index++;
    if (index > ids.length - 1)
        index = 0;

    $("#bannerImage").attr({ src: "/thumbnaildb.php?id=" + ids[index] + "&banner=true" });

    return index;
}


$(document).ready(function() {

//use jquery to fade images
$('#image_rotate').innerfade({   
        speed: 'slow',   
        timeout: '12000',   
        type: 'sequence',   
        containerheight: '192px'  
    });  
});

