﻿$(document).ready(function() {
    $('.Slider').after('<ul id="Pager"><\/ul><button id="Prev" class="nextprev"><\/button><button id="Next" class="nextprev"><\/button>');
    $('.Slider').cycle({
        fx: 'scrollVert'
			, pause: 300
			, speed: 250
			, timeout: 10000
			, next: '#Next'
			, prev: '#Prev'
			, pager: '#Pager'
			, pagerAnchorBuilder: function(idx, slide) {
			    return '<li><a href="#">' + parseInt(idx + 1) + '<\/a><\/li>';
			}
			, after: function() {
			    $(this).find('h3').clone().replaceAll('.screening .column h3');
			    $(this).find('p').clone().replaceAll('.screening .column p');
			}
    });
    /* $('.Slider').hover(
    function() {
    $('.nextprev').css('display','block');
    },
    function() {
    $('.nextprev').css('display', 'none');
    }
    );
    $('.nextprev').hover(
    function() {
    $('.nextprev').css('display', 'block');
    },
    function() {
    $('.nextprev').css('display', 'none');
    }
    );*/

});
