$(document).ready(function(){
	$("#controller").jFlow({
		slides: "#flow_annunci",
		controller: ".flow_control", // must be class, use . sign
		slideWrapper : "#flow_slide", // must be id, use # sign
		selectedWrapper: "flow_selected",  // just pure text, no sign
		easing: "swing",
		duration: 400,
		interval: 10000, // this is the amount of milliseconds before the switch happens
		height: "160px",
		width: "99%",
		prev: ".flow_slider_prev", // must be class, use . sign
		next: ".flow_slider_next" // must be class, use . sign
	});
});