﻿(function($){
	$.fn.corners = function(width) {
		obj = $(this).get(0);

		if (typeof obj.style.MozBorderRadius != "undefined") {
			obj.style.MozBorderRadius = width + 'px';
		}
	}
})(jQuery);