$(document).ready(function() {
	/*alert("alcada wrapper: " +$('body').height());*/
	var offsetHeight = $('.wrapper').height() - 44;	
	/*alert("alcada offsetHeight: " +offsetHeight);*/
	
	if (offsetHeight > (188 + $('.content-container').height()))
	{
		var margin = (offsetHeight - (188 + $('.content-container').height())) / 2;
		
		$('.top-container').children('.header').css("margin-top", margin);
		$('.top-container').children('.menu').css("margin-top", margin);
		$('.top-container').children('.content-container').css("margin-bottom", margin);
	}
});
