$(document).ready(function(){
							  
    $(".paging").jFlow({
        slides: "#slideshow",  // 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: "activeSlide",  // just pure text, no sign
        width: "992px",  // this is the width for the content-slider
        height: "490px",  // this is the height for the content-slider
        duration: 600,  // time in miliseconds to transition one slide
		interval: 5000, // this is the amount of milliseconds before the switch happens
        prev: ".prev", // must be class, use . sign
        next: ".next" // must be class, use . sign
    });
	
		pageAC = $('.slideWrap .paging span').size() * 12;
	pageLP = 496 - ( pageAC / 2);
	
		$('.slideWrap .paging').width(pageAC);
	$('.slideWrap .paging').css({left: pageLP});
	
	
});


