var slideshowImagePath = '';
var slideshowImgs = ['pic1_twowomen.jpg', 'pic2_womendancing.jpg', 'pic3_childrensinstallation.jpg', 'pic4_hillexhibit1.jpg', 'pic6_smorgaschef.jpg', 'pic5_exterior.jpg', 'pic7_fall.jpg', 'pic8_kids.jpg', 'pic9_manwithboat.jpg', 'pic10_food.jpg', 'pic11_blackabstract.jpg', 'pic12_operahouse.jpg', 'pic13_blackandwhiteband.jpg'];
function slideshowLoader(incomingImg) {
	$('#slideshowHolder').append('<img src="' + incomingImg + '" alt="Scandinavia House" class="incomingImg" />');
	$('.incomingImg').load(function() {
		$('.incomingImg').fadeIn(1000, function() {
			$('.currentImg').remove();
			$('.incomingImg').addClass('currentImg');
			$('.currentImg').removeClass('incomingImg');
		});
	});
}
function slideshowInterval() {
	var currentImg = $('.currentImg').attr('src');
	var incomingImg = slideshowImgs[slideshowImgs.length - 1];
	var next = true;
	for (var i = 0; i < slideshowImgs.length; i++) {
		if (next) {
			incomingImg = slideshowImgs[i];
			next = false;
		}
		if (currentImg.indexOf(slideshowImagePath + slideshowImgs[i]) != -1) {
			next = true;
		}
	}
	slideshowLoader(slideshowImagePath + incomingImg);
}
function slideshowInit() {
	slideshowLoader(slideshowImagePath + slideshowImgs[0]);
	window.setInterval(slideshowInterval, 5000);
}

//On Ready
$(function() {
	slideshowInit();
});
