// JavaScript Document

ssArray = new Array();
ssArray = ["maine_bracelet_home.jpg", "silver_hook.jpg", "silver_sand_dollar.jpg", "small_claw.jpg", "silver_fish.jpg"];
imgCounter = 1;
imgQty = 5;
$(document).ready(function() {
	imagePath = "images/ssImages/";

	$('.ssImage img').each(function(index,el){ //This loads all of the tooltip images
		$(this).attr('src', imagePath + ssArray[index]); 
	});
	$('.ssImage img').imagesLoaded(function(){
		$('.ssImage').each(function(){
			$(this).css('visibility', 'visible').hide();
		});
		$('#img' + imgCounter).fadeIn(1000, function(){
			$('#slideShow').css({backgroundImage:'none'});
		});
		setInterval( "playSlideShow()", 5000 )
	});
	
	
	
	
	
	
	
	
	
	
	
});


function playSlideShow(){
		if(imgCounter != 0){
			$('#img' + imgCounter).fadeOut(1000);
		}
		imgCounter++;
		if(imgCounter == imgQty){
			imgCounter = 1;
		}
		 $('#img' + imgCounter).fadeIn(1000);
		 
}
