$(document).ready(function(){
    
    // Hide iPhone URL bar
    window.scrollTo(0, 1);
    
    // Slideshows
    $('.slides').cycle({
        timeout: 5000 // Five seconds between slides
    });
    
    // Extend footer background
    var footer_height = $('#footer').height();
    var window_height = $(window).height();
    var body_height = $('body').height();
    var grow = ((window_height - body_height) + footer_height) + 'px';
    $('#footer').css({ height: grow });
    
});
