$(function(){
    /* jQuery Cycle Plugin (http://jquery.malsup.com/cycle/) */
    $('#slides').cycle({
        timeout:    5000, /* how long to wait before fading to next slide */
        speed:      2000 /* fading speed */
    });
    
    /* jQuery Waypoints Plugin (http://imakewebthings.github.com/jquery-waypoints/) */
    $('.strip').waypoint(function(event, direction) {
        if(direction==='down'){
            $('.waypointnav').fadeIn();
            $('#container').stop().animate({margintop:60});
        }else{
            $('.waypointnav').fadeOut();
            $('#container').stop().animate({margintop:0});
        }
    },{offset:-134});
});

