var slideshow = Array('inkbanner.jpg', 'kirkkara.jpg', 'storephoto.jpg', 'wantedgold.jpg');
var imgIndx = 0;

function image_next() {
	var prevIndx = imgIndx;
	
	if ( imgIndx >= slideshow.length ) {
		imgIndx = 0;
	}	
	imgIndx++;
	
	

	$('#slideshow > img:nth-child('+imgIndx+')').fadeTo('500', 1);
	$('#slideshow > img:nth-child('+imgIndx+')').css('z-index', 99);
	
	
	$('#slideshow > img:nth-child('+prevIndx+')').fadeOut('500', 0);
	$('#slideshow > img:nth-child('+prevIndx+')').css('z-index', 1);
	
	
	
	
	setTimeout('image_next()', 5000);
	
}

jQuery(document).ready( function($) {
	
	
	    
		$('#slideshow > img:nth-child(1)').fadeTo('500', 1);
		$('#slideshow > img:nth-child(1)').css('z-index', 99);
		

		
		image_next();
		
	
	
	if ( $('.divider-v').length > 0 ) {
		$('.divider-v').attr('height', $('.Left').height() );
	}
});



