window.onload = function() {
	$('img.userImage').each(function() {
		var $this = $(this);
		if ($this.width() > 250 || $this.height() > 250) {
			$this.css(($this.width() >= $this.height() ? 'width' : 'height'), '250px');
		}
		if (!$this.parent().is('a')) {
            $this.css('cursor', 'pointer');
			$this.click(function() {
				document.location.href = this.src;
			});
		}
	});
}