$(document).ready(function() { 
						   
	var display_featured_list = function() {
	
		$.ajax({
			type: "POST",
			url: baseUrl + "/jhelper/featuredraces",
			success: function(del) {
				$("#featured_list").html(del);
			}, 
			error : function(del) {
				alert("Error posting data!");
			}
		});

	}
	display_featured_list();
	window.setInterval(display_featured_list, 6500);
	
});
