// create the billboard function 
$(document).ready(function () 
{	
	// run the carousel
    $("#carousel").jFlow({
			slides: "#carousel_slides",
			slideWrapperID: "#carousel_slides_wrapper",  // must be id
			duration: 1200,
			width: 940,
			easing: 'swing',
			prev: ".carousel_prev", // must be class, use . sign
			next: ".carousel_next", // must be class, use . sign
			autoslide: true,
			autoslideInterval: 12000
		});
		
	// show the someone's missing story
	//showMissingStory(69);
	showStory(76);
});

