$(document).ready(function(){

	cur_item = $('title').text().split("\u00BB ")[1];	
	
	$('li.cat-item').each(function () {
		
		if ($(this).children().text() == cur_item) {
			$(this).children().text("*"+cur_item);
		//	$('li.cat-item:first').children().text('News');
		}

	});

 });
