﻿$(document).ready(function(){
    if($('.cycle').length > 0){
        //height and width needed by webkit
        $('.cycle div.pageFragment').css('width','975px').css('height','215px');
        $('<div></div>').attr('class','nav').insertAfter('.cycle');
        $('<a>Previous</a>').attr('href','#').attr('class','prev').appendTo('.nav');
        $('<a>Next</a>').attr('href','#').attr('class','next').appendTo('.nav');
    }
    $('.cycle').cycle({
        fx:     'scrollHorz',
        //speed:  'fast',
        timeout: 0,
        next:   '.next',
        prev:   '.prev'
    });
});

