// Get Ready --- START --->

$(document).ready(function() {
	
	
	var height = ($(window).height() - $(".container.first").height()) - 120;
	$("#footer-extende").height(height);
	
	$(window).resize(function() {
		height = ($(window).height() - $(".container.first").height()) - 120;
		$("#footer-extende").height(height);
	});
	
});


