1 function increasePhotoSize() {
2 $('.photoingallery, .albumingallery').each(function(index) {
9 function decreasePhotoSize() {
10 $('.photoingallery, .albumingallery').each(function(index) {
17 function scalePhotosToSize(size) {
18 $('.photoingallery, .albumingallery').each(function(index) {
19 if(this.height > this.width) {
20 this.width = this.width*size/this.height;
24 this.height = this.height*size/this.width;