$(window).resize( function()
{
	centerLayout();
});

function centerLayout()
{
	var w = $(window).height();
	var c = $('#container').height();
	var d = (( w - c ) / 2 )+ 23;
	$('#container').css('margin-top',d);
}
