/*!
 * jquery.slideshow for jflow auto
 *
 * Date: Thu Nov 11 19:04:53 2010 -0500
 */
$(document).ready(function(){
    $("#myController").jFlow({
        slides: "#slides",  // the div where all your sliding divs are nested in
        controller: ".jFlowControl", // must be class, use . sign
        slideWrapper : "#jFlowSlide", // must be id, use # sign
        selectedWrapper: "jFlowSelected",  // just pure text, no sign
        width: "567px",  // this is the width for the content-slider
        height: "244px",  // 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 no comma for IE7
    });
});

