$(document).ready(function(){
		//theme images
	$("#slide-controller").jFlow({
        controller: ".jFlowControl", // must be class, use . sign
        slideWrapper: "#jFlowSlide", // must be id, use # sign
        slides: "#adSlides",  // the div where all your sliding divs are nested in
        selectedWrapper: "jFlowSelected",  // just pure text, no sign
        width: "577px",  // this is the width for the content-slider
        height: "221px",  // this is the height for the content-slider
        duration: 1200,  //1500; time in miliseconds to transition one slide
        prev: ".jFlowPrev", // must be class, use . sign
        next: ".jFlowNext", // must be class, use . sign
        auto: true, // true or false
        slideShiftDuration: 6000, // time in miliseconds before next slide is loaded (if auto is set to true)
        easing: "easeInOutExpo" //"easeInOutElastic"; find different here: http://gsgd.co.uk/sandbox/jquery/easing/
    });


});
