jQuery(document).ready(function() {
    showPage(1);
})

// Slide navigation
function showPage(s) {
    // Get the selected slide element
    var selected = jQuery('#home_page' + s);

    // Get all the other slides
    var pages = jQuery('#home_pages_container .page:visible').not('#home_page' + s);

    // Show the selected slide and hide the others
    pages.fadeOut('fast', function() {selected.fadeIn('fast');});

    // Activate the corresponding tab
    jQuery('#home_nav_container .active').removeClass('active');
    jQuery('#home_nav_container #tab-' + s).addClass('active');
    
    return false;
}

window.onload = function() {
  SetMainBodyHeight();
}