
			// *** Start additions by Ben Fox
			var rotateTimeout;

			// Long version of $();

			//$('#tab_featured_nav').css('left', parseFloat($('#tab_featured').offset()['left'] + 360) + 'px').css('top', parseFloat($('#tab_featured').offset()['top'] + 249) + 'px');

			$('#tab_featured > div > div:not(:first)').hide();

			// Set the var to be a handle for the interval so we can use it later

			if($('#tab_featured > div > div').size() > 1) {
			rotateTimeout = setInterval('rotateFeatured()', 4000); // 6 Second timeout between slides
			}

			// Set an on click for each of the tabbed numbers - Please note the change from using href to using rel
			// This will change the current tab to the clicked tab, but also reset the interval to start running again after 6 seconds
			$('#tab_featured > div > ul:first li a').click(function() {
			clearInterval(rotateTimeout);

			rotateFeatured($(this).attr('rel'));

			//setInterval('rotateFeatured()', 8000); // 8 second timeout to start rotating after manually jumping to a slide

			return false;
			});
		
