var images = new Array("02", "05", "03", "04", "01", "06", "07");
var index = 0;
var sI;

function swapImage() {
    if (index == 7) index = 0;
    $('#rightimage').hide();
    
    var image = "<img id='slideshow' src='images/slideshow/" +images[index] +".jpg'>";
    //alert(image);
    $('#rightimage').html(image);
    $('#rightimage').fadeIn("slow");    
    
    index++;
    
    sI = setTimeout("swapImage()", 5000);
     
}