$(document).ready(function(){
	jQuery.fn.featuring = function(){
		$('#featured').fadeOut('slow',function(){
			$(this).load("/php/featured.php", function(){
				Cufon.refresh();
			});
		});
		$('#featured').fadeIn('slow');
	}
	$(document).everyTime("8s", function()
	{
		$(this).featuring();
	});
	$(this).featuring();
});
