jsFuncObserve.kwicks = function(targetid) {
	jQuery(targetid + ' .kwicks').each(function() {
		var kwicks_counter = 0;
		jQuery(this).children('li').each(function(i) {	
			if(!jQuery(this).is(':has(a)')) {
				kwicks_counter = i;
			}
		});
	
	
		
	   jQuery(this).kwicks({
					max : 220,
					duration : 100,
					sticky : true,
					defaultKwick : kwicks_counter,
					spacing : 5
		});
	});

};
	

