$(document).ready(function() {
	
	$('[rel=gallery]').fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'		: 800,
		'speedOut'		: 500,
		'overlayOpacity': '.8',
		'overlayColor'	: '#000000'
		
	});
	
	$('.image img').hide();
	
	count = 0;//initialize
	int=0;//Internet Explorer Fix
	if($('.image img').length > 0) {
		$(window).bind("load", function() {//The load event will only fire if the entire page or document is fully loaded

			var int = setInterval("preload(count)",300);//500 is the fade in speed in milliseconds
		});
	}
	
});

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

 if (count >= images) {// Loop the images
 clearInterval(int);//When it reaches the last image the loop ends
 }
 $('.image img:hidden').eq(0).fadeIn(500);//fades in the hidden images one by one

 count++;//add 1 to the count
}
