/***************************************************************************
 * @Author: NetChillies - PepUp The Web!
 * @Website: http://www.netchillies.com/
 * @Contact: http://www.netchillies.com/contact
 * @Privacy Policy & Terms of Use: http://www.netchillies.com/terms
 * @License Info: http://www.netchillies.com/license
 ***************************************************************************/
$(document).ready(function(){
    $('#slideshow').cycle({
        fx:     'scrollLeft',
        speed:  2500,
        timeout: 3000,
        pager:  '#nav',
        pagerEvent: 'mouseover' ,
        pagerAnchorBuilder: function(idx, slide) {
            // return selector string for existing anchor
            return '#nav li:eq(' + idx + ') a';
        }
    });

    $('#nav li a').click(function(){
       
       var url = $(this).attr('href');

       window.location.href = url;

    });

});
