$(document).ready(function(){

    //HOME PAGE SLIDER
    //hover arrows
    $('#banner').hover(
        function() { 
            $('.prev').show();
            $('.next').show();
        },
        function() { 
            $('.prev').hide();
            $('.next').hide();
        }
    );
    
    //slider
    $('.slider').cycle({ 
        fx: 'scrollHorz',
        sync: 1,
        speed: 500,
        timeout: 8000,
        pauseOnPagerHover: 1,
        next: '#next',
        prev: '#prev',
        fit: 1,
        pause: 1
    });
    
    //delays the other slider images from displaying
    $('.slider img').delay(200).show();
    
});

