Load a section to the full window size
/*-------------------------------------------------*/
/* = Full-window section
/*-------------------------------------------------*/
var windowHeight = jQuery(window).height(),
topSection = jQuery(' .EXAMPLE-CLASS-NAME ');
topSection.css('height', windowHeight);
jQuery(window).resize(function() {
var windowHeight = jQuery(window).height();
topSection.css('height', windowHeight);
});