function cropWindow() {
	var browser = navigator.appName;
	if (browser == 'Microsoft Internet Explorer') {
		var winHeight = document.body.clientHeight;
		var winWidth = document.body.clientWidth;
	} else {
	var winHeight = window.innerHeight;
	var winWidth = window.innerWidth;
	}
	if (winWidth >= 760) {
		document.body.setAttribute('class','window-large');
	} else {
		document.body.setAttribute('class','window-small');
		//alert(bodyClassValue);
   	// alert('browser window less than 910px wide');
	}
	// alert(browser);
	// alert('height ' + winHeight + ' width ' + winWidth);
	
}
//window.onload = cropWindow();
window.onresize = cropWindow;

// countGalleryImages() counts the number of images in the photos gallery
// and displays pagination if there are more than 10.

function countGalleryImages() {
	
}
