/*
PAPA CORE SCRIPT
*/


var i = 0;

$(document).ready(function(){
	
	$('#projectPhotos img').hide();//.css('display','none');
	var int = setInterval("doThis(i)",1500);
	
	});

	function doThis() {
		var imgs = $('#projectPhotos img').length;

		if (i >= imgs) {
		clearInterval(int);
		}

	$('#projectPhotos img:hidden').eq(0).fadeIn(1500);

i++;

}





$(document).ready(function(){
	//PNG FIX
	$(document).pngFix();
	
$('#slideshow3').cycle({ 
    timeout: 4000,
    delay:  -1000,
    sync: 1, 
    speed:  1500 
    }); 
	
});//END DOM READY
