function vertCentre() {
	var window_height = $(window).height();
	var height = $('#container').height();
	var margin = Math.round((window_height - height) / 2);
	$('#container').css('marginTop', margin);
}

$(document).ready(vertCentre);
$(window).resize(vertCentre);
