<!--//---  Toggler for Paris Storyvar totalItems = 8var whichItem = 0		function stretcher(which)		{		if(which == 0) section0.style.display = "";		if(which == 1) section1.style.display = "";		if(which == 2) section2.style.display = "";		if(which == 3) section3.style.display = "";		if(which == 4) section4.style.display = "";		if(which == 5) section5.style.display = "";		if(which == 6) section6.style.display = "";		if(which == 7) section7.style.display = "";		}		function hider(which)		{		if(which == 0) section0.style.display = "none";		if(which == 1) section1.style.display = "none";		if(which == 2) section2.style.display = "none";		if(which == 3) section3.style.display = "none";		if(which == 4) section4.style.display = "none";		if(which == 5) section5.style.display = "none";		if(which == 6) section6.style.display = "none";		if(which == 7) section7.style.display = "none";		}			function stretchAll()		{		section0.style.display = "";		section1.style.display = "";		section2.style.display = "";		section3.style.display = "";		section4.style.display = "";		section5.style.display = "";		section6.style.display = "";		section7.style.display = "";		}			function hideAll()		{		section0.style.display = "none";		section1.style.display = "none";		section2.style.display = "none";		section3.style.display = "none";		section4.style.display = "none";		section5.style.display = "none";		section6.style.display = "none";		section7.style.display = "none";		}//-->