/***************************************************************************
 * @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:     'scrollHorz',
        speed:  'slow',
        timeout: 2500,
        next:   '#next',
        prev:   '#prev'
    });

    $('#pause').click(function(){
        $('#slideshow').cycle('pause');
    },function(){
        $('#slideshow').cycle('resume');
    });

    var $ul = $('.footer-nav ul > li');
    var el = $ul.eq($ul.length-1);
    $(el).addClass('nobg');
    
});
