// JavaScript Document

$(function() {
    $('#slideshow').cycle({
        fx:     'scrollRight',
	 	delay: -8000,
        timeout: 10000,
        prev:'#prev',
		next: '#next',
		pager:  '.nav',
		
		pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '.nav li:eq(' + (idx) + ') a';
        }
    });

    $('#direct').click(function() {
        $('.nav li:eq(2) a').triggerHandler('click');
        return false;
    });
    
});








