var $s=jQuery.noConflict();
$s(document).ready(function(){	
	$s("#slideController").jFlow({ 
		slides: "#slideContainer", 			// Main container that holds all the slides
		controller: ".jFlowControl", 		// This classname is used as a trigger to call each slide
		slideWrapper : "#jFlowSlide", 		// This is an ID for the Wrapper of contents in a single slide
		selectedWrapper: "jFlowSelected", 	// classname for the current(active) slide
		easing: "easeInOutCubic", 			// easing animation type
		auto: false, 						// Set to "true" if you wish to have an auto transition
		duration: 800, 						// Duration for slide movement
		width: "878px", 					// width of a slide
		height: "235px", 					// height of a slide
		prev: ".jFlowPrev", 				// classname for previous slide navigation
		next: ".jFlowNext" 					// classname for next slide navigation
	});
})

