var add_new = function (selector, length, style, start){
	if(length == null){
		length = 3;
	}
	if((m = location.href.match(/page=(\d+)/)) && parseInt(m[1]) > 1){
		return;
	}
	if((m = location.href.match(/catid=(\d+)/)) && parseInt(m[1]) == 93){
		return;
	}
	$(selector).find('li').slice(start == null ? 0 : start, (start == null ? 0 : start) + length).each(function (){
		this.innerHTML += '<img src="http://www.ciif-expo.com/templates/xhtml/skins/xhtml/images/new.gif" style="' + (style == null ? 'position:relative;top:-3px;left:-2px;' : style) + '" />';
	});
}
