var theInt2 = null;
		
theInterval2 = function(){
	clearInterval(theInt2);
	
	theInt2 = setInterval(
        "$('.slider-wrap a.nextPg').click();"
     , 6000);
};

$(function(){
	
	$("#main-photo-slider").codaSlider();
	theInterval2();
	
    $('.stripNavL0 a, .stripNavR0 a').click(theInterval2);
});
