function resizer( selectors, w ) {
	jQuery(selectors).each(function() {
	    var owidth = jQuery(this).width(); var oheight = jQuery(this).height();
		if (owidth > w) {
			var newH = (oheight * w / owidth);
			jQuery(this).attr({
				width: w,
				height: newH
			});
		}; // endif
	});
}
