var timeOuter = null;



function ShowNextFancyBoxPicture()
{ 	

	$.fancybox.next(); 
	ScheduleFancyNext();
}

function ScheduleFancyNext()
{
	clearTimeout(timeOuter);
	timeOuter = setTimeout(ShowNextFancyBoxPicture,5000);

}
