var ct = 0;
var blnFirstItemOff = false
$('#breadcrumbs li').each( function() {
	if ($(this).attr("id") == "bcitem") {
		ct += 1
	}
});
if(ct > 3) {
	$('#breadcrumbs li').each( function() {
	if ($(this).attr("id") == "bcitem") {
		if (blnFirstItemOff == false) {
			$(this).css({'display' : 'none'});
			blnFirstItemOff = true
		}
	}
});

}

