// JavaScript Document

jQuery(document).ready(function () {
        $('#slideshow').before('<ul id="nav">').cycle({
            fx: 'turnLeft',
            speed: 'slow',
            timeout: 10000,
            pager: '#nav',
            pagerAnchorBuilder: function (idx, slide) {
                return '<li id="' + slide.title + '"><a href="#"></a></li>';
            },
            pagerEvent: 'mouseover'
        });
    });
