$(function() {
	var slideshow = $('div#slideshow');
	// EDIT THIS TO ADD NEW IMAGES
	var num_images = 11;
	var output = ''
	for (i = 0; i < num_images; i++) {
		output += '<img src="images/slideshow/' + (i + 1) + '.jpg" style="display:none;position: absolute;" />';
	}
	slideshow.append(output);
	slideshow.find('img:first').show();

	setInterval(function() {
		var img = slideshow.find('img:visible');
		if (img.next('img').length) {
			img.fadeOut('slow');
			img.next().fadeIn('slow');
		} else {
			img.fadeOut('slow');
			slideshow.find('img:first').fadeIn('slow');
		}
	// EDIT THIS TO CHANGE SLIDESHOW TIME
	}, 5000);
});
