function SizePicture()
{
	//Don't cut the picture off mid-photo - resize the PictureBar div so only full photos show
	ScrollBarOffset = 0;
	if (typeof (window.innerWidth) == 'number')
	{
		//Netscape - adjust for scroll bar if netscape
		ScrollBarOffset = 17;
	}
	LogoGraphicWidth=442;
	CutPoints = new Array(117,198,340,490);
	BrowserWidth = BrowserWindowWidth();
	for (i=CutPoints.length-1; i > -1; i--)
	{
		if (CutPoints[i]+LogoGraphicWidth+ScrollBarOffset < BrowserWidth)
		{
			document.getElementById("Picturebar").style.width = CutPoints[i] + "px";
			break; 
		}
	}
}

