$(function () {
		$('#mural img').hide();//hide all the images on the page
		$('.img-gallery img').hide();//hide all the images on the page
	});
	var i = 2000;//initialize
	var int=2000;//Internet Explorer Fix
	$(document).ready(function() {//The load event will only fire if the entire page or document is fully loaded
		var int = setInterval("doThis(i)",2000);//2000 is the fade in speed in milliseconds
	});
function doThis() {
		var images = $('img').length;//count the number of images on the page
		if (i >= images) {// Loop the images
			clearInterval(int);//When it reaches the last image the loop ends
		}
		$('.img-gallery img:hidden').eq(0).fadeIn(2000);//fades in the hidden images one by one
		$('#mural img:hidden').eq(0).fadeIn(2000);//fades in the hidden images one by one
		i++;//add 1 to the count
}
