var index = 0;
var links = 
["http://www.jwjewels.com/index.html", "http://www.jwjewels.com/diamond-necklaces-diamond-pendants.html", 
"http://www.jwjewels.com/index.html",
"http://www.jwjewels.com/diamond-earrings1.html",
"http://www.jwjewels.com/index.html",
"http://www.jwjewels.com/womensrings.html"];

var images = 
["/lib/jwjewels/summer2011.jpg", 
"/lib/jwjewels/necklacesrotating2.jpg",
"/lib/jwjewels/summer2011.jpg",
"/lib/jwjewels/newdiamearr.jpg",
"/lib/jwjewels/summer2011.jpg",
"/lib/jwjewels/ringsrotating.jpg"]; 

$(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]+"\" width=630 height=220 border=0 hspace=0 vspace=0 alt=\"\"/>");
}
setTimeout(doBannerFade, 1500);
}

function doBannerFade(){
$('#image-rotate').fadeOut(1250, function()
{
index++;
if (index == images.length){
index = 0;
}
$('#image-rotate').attr("src", images[index]);
$('#image-rotate').fadeIn(1250, function()
{
banner_rotate();
}
);
if (links[index] != "#removeAttr"){
$('#rotate').attr("href", links[index]);
} else {
$('#rotate').removeAttr("href");
}
}
);
}


