$(window).load(function (){
	var height = setTimeout(function() {
		// This will increase the length of the #container if it is
		// smaller than the #content_container
		//
		// We do this because the pink background is set on the #container
		//
		// The function waits 500 before checking if it has to adjust the height
		// to make sure every javascript carousel have finished loading.
			if ($('#content_container').height() > $('#container').height())
			{
				$('#container').css({'height': $(document).height()});
			}
	}, 500)
});
