/*
Image Rescale - Customized for Supalai
*/

(function($) {
	$.fn.supalairescale = function(options)
	{
		var defaults = {
//			maxsize: 50
			heightsize: 90 //for height to 90px
		};
		options = $.extend(defaults, options);
		this.each(function() {
			var o = $(this);
			var w = o.width();
			var h = o.height();

			var ratio = w/h;

			var height = options.heightsize;
			var width = Math.round(ratio * height);

			o.width(width).height(height);
		});
	};
})(jQuery);

