;(function($) {
$(document).ready(function(){

	$("#banner_controls").jFlow({
		slides: "#banner",
		controller: ".jFlowControl", // must be class, use . sign
		slideWrapper : "#banner_wrap", // must be id, use # sign
		selectedWrapper: "jFlowSelected",  // just pure text, no sign
		width: "640px",
		height: "300px",
		duration: 400, // amount of time for transition to happen
		interval: 8000, // this is the amount of milliseconds before the auto-transition
		prev: ".jFlowPrev", // must be class, use . sign
		next: ".jFlowNext" // must be class, use . sign
	});
	
});
})(jQuery);
