  //<![CDATA[

		// The actual rotator function
		// If 'to' is provided, it will jump to that one, else, it will go to next in list
		function rotateFeatured(to) {
		var currentFeaturedDiv =  $('#tab_featured > div > div:visible');

		var showNext;

		if(to == '' || to == undefined || to == null) {
		if($(currentFeaturedDiv).attr('id') == $('#tab_featured > div > div:last').attr('id')) {
		showNext = $('#tab_featured > div > div:first').attr('id');
		} else {
		showNext = $(currentFeaturedDiv).next().attr('id');
		}
		} else {
		showNext = to;
		}

		$('#tab_featured > div > ul > li a').css('color', '').css('text-decoration', 'none');

		$('#tab_featured > div > ul > li a[rel="' + showNext + '"]').css('color', '#b12b06').css('text-decoration', 'underline');

		$(currentFeaturedDiv).fadeOut(600, function() { // 0.6 Second fade in / fade out time
		$('#' + showNext).fadeIn(600);
		});
		}
		// *** End additions by Ben Fox
		    //]]>

