	var winWidth = $(window).width();
	var winHeight = $(window).height();
	
	/* max % allowed for gallery pic width and height */
	
	var widthCalc = .6;
	var heightCalc = .9;
	
	var winWidthAdj = $(window).width() * widthCalc;
	var winHeightAdj = $(window).height() * heightCalc;
