
function checkPhotos()
{
	var completeImgPath = $(".slideshow img:first").attr("rel").toString();
	var imgID = completeImgPath.substring(completeImgPath.lastIndexOf("/") + 1);
	
	$.ajax({
	   type: "POST",
	   url: "../resources/ajax/check-photos.php",
	   success: function(img){
		
		if(imgID != img){
			window.location.reload(false);
		}
	   }
	 });
	setTimeout('checkPhotos()', 15000);
}


$(document).ready(function(){
		
	if(parseInt($(".slideshow img").length) > 0){
			
			$('.slideshow').cycle({
			fx: 'fade,turnDown,scrollRight,curtainX,scrollDown',
			speedIn:  2000,
		    speedOut: 1000, 
		    easeIn:  'bounceout',
		    easeOut: 'backin', 
			timeout: 3000,
   			delay: 2000 
		});
		
		setTimeout('checkPhotos()', 15000);	
	}
	
});

