var index = 0;
var links = ["URL_for_first_image", "URL_for_second_image"];
var images = ["images/client-logos.gif", "images/client-logos1.gif", "images/client-logos2.gif", "images/client-logos3.gif", "images/client-logos4.gif", "images/client-logos5.gif"];

$(document).ready(
function(){
banner_rotate();
}
);

function banner_rotate(){
if (!$('#image-rotate').length){
$('#rotate').attr("href", links[index]);
$('#rotate').append("<img id=\"image-rotate\" src=\""+images[index]+"\" alt=\"\"/>");
}
setTimeout(doBannerFade, 800);
}

function doBannerFade(){
$('#image-rotate').fadeOut(2000, function()
{
index++;
if (index == images.length){
index = 0;
}
$('#image-rotate').attr("src", images[index]);
$('#image-rotate').fadeIn(2000, function()
{
banner_rotate();
}
);
if (links[index] != "#removeAttr"){
$('#rotate').attr("href", links[index]);
} else {
$('#rotate').removeAttr("href");
}
}
);
}
