/*$(document).ready(function() {
	//hide all the images on the page
	$('.text img').hide();
});
*/
var i = 0;//initialize
var bint=0;//Internet Explorer Fix

$(window).bind("load", function() {//The load event will only fire if the entire page or document is fully loaded
	bint = setInterval("doThis(i)",444);//444 is the fade in speed in milliseconds
});

function doThis() {
	var imagess = $('img').length;//count the number of images on the page

	if (i >= imagess) {// Loop the images
		clearInterval(bint);//When it reaches the last image the loop ends
	}

	$('img:hidden').eq(0).fadeIn(444);//fades in the hidden images one by one
		i++;//add 1 to the count
}