/***************************************************************************
 * @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: 10000,
        next:   '#next',
        prev:   '#prev'
    });

    var $ul = $('#navigation ul > li a');
    var el = $ul.eq($ul.length-1);
    $(el).addClass('nobg');

    
    var $ul2 = $('#home-navigation ul > li');
    var el2 = $ul2.eq($ul2.length-1);
    $(el2).addClass('nobg');

})
