function positionLogo(){
	var wh = 0;
	try{
		wh = $(window).height();
	}catch(e){
		wh = '600';
	}
	var logo = $('h1');
	var enter = $('#enter-link');
	var cont = $('#container');
	logo.css('top',Math.round((wh / 2) - (logo.height() / 2))-15+'px');
	enter.css('top',Math.round((wh / 2) - (enter.height() / 2))+'px');
	//cont.css('width',$(window).width()+'px');
	cont.css('height',wh+'px');
}

$(document).ready(function(){
	$(window).resize(positionLogo);
	positionLogo();
});