function co140_getItemHTML(object) {
	var style = '';
	if (object.color) {
		style = ' style="background-color:' + object.color + ';"';
	}
	html = '<img src="' + object.image + '" alt="" />';
	html += '<div class="co140-name"' + style + '>SMAAK</div>';
	html += '<div class="co140-issue">' + object.issue + '</div>';
	html += '<div class="co140-rollover">';
	html += '<a href="' + object.link + '">';
	html += '<span class="co140-title">' + object.title + '</span>'
	html += '<span class="co140-teaser">' + object.teaser + '</span>';
	html += '<span class="co140-readmore">Lees meer</span>';
	html += '</a>';
	html += '</div>';
	
	return html;
};

function co140_setHover() {
	$('.jcarousel-clip').hover(
		function () {
			$(this).addClass('hover');
		}, 
		function () {
			$(this).removeClass('hover');
		}
	);
};