	$(document).ready(function(){
	    $("#myController").jFlow({
			controller: ".jFlowControl", // must be class, use . sign
			slideWrapper : "#jFlowSlider", // must be id, use # sign
			slides: "#slides",  // the div where all your sliding divs are nested in
			selectedWrapper: "jFlowSelected",  // just pure text, no sign
			width: "680px",  // this is the width for the content-slider
			height: "300px",  // this is the height for the content-slider
			auto: true,
			duration: 400  // time in miliseconds to transition one slide
    });
});

