(function ($) { //makes jQuery play nice
	
	$(document).ready(function() {
			var cycleHeight = 0; //sets up the max size the box needs to be
			
		    $('.imagegallerywidget .imagesholder .gallerywidgetimage').each(function(){
		        if($(this).height() > cycleHeight) cycleHeight = $(this).height();
		        
		    });

	});
	
})(jQuery);