/*
 * Copyright 2008-2011 Eduards Samersovs <eduards.samersovs@lotusmedia.lv>
 * This software is part of LotusMedia CMS
 * All Rigth Reserved
 *
 * Modification History:
 * Rev# Date        By  CR#   Reason
 * 1.0  2011-03-24  ES        Initial version
 * 1.1  2011-04-21  ES        fixed
 */
(function($) {
	$.jstrim = function (str) {
		if (str != null) {
		    str = str.replace(/\0/g, "\\0");
		    str = str.replace(/\'/g, '');
		    str = str.replace(/&quot;/g, '');
		    str = str.replace(/&nbsp;/g, '');
		    str = str.replace(/\&/g, '');
		    return encodeURI($.trim(str));
		} else {
			return '';
		}
	};
})(jQuery);

