// Home featured slider

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

// Home video gallery slider

$(document).ready(function(){
	    $("#video-controller").jFlow({
			controller: ".jFlowControlVideo", // must be class, use . sign
			slideWrapper : "#video-jFlowSlider", // must be id, use # sign
			slides: "#video-slides",  // the div where all your sliding divs are nested in
			selectedWrapper: "jFlowSelectedVideo",  // just pure text, no sign
			width: "330px",  // this is the width for the content-slider
			height: "304px",  // this is the height for the content-slider
			duration: 400,  // time in miliseconds to transition one slide
			prev: ".jFlowPrevVideo", // must be class, use . sign
			next: ".jFlowNextVideo", // must be class, use . sign
			auto: false
    });
});
