$(document).ready(function(){
	$(".image").each ( function () {
		if ( $(this).width() > 700 ) {
			$(this).width ( 500 );
		} else
		if ( $(this).height() > 500 ) {
			$(this).height ( 400 );
		};		
	});
	$(".signature").each ( function () {
		if ( $(this).height() > 110 ) {
			$(this).height ( 110 );
			$(this).one ( 'click', function () {
			    $(this).height ( 'auto' );
			});
		};
	});
});
