// JavaScript Document

function resizetext(){
			if($(window).height() < $('#content').height()){
				$('#horizon').css('top', '0px');
				$('#content').css('top', '0px');
			} else {
				$('#horizon').css('top', '45%');
				$('#content').css('top', '-'+($('#content').height()/2)+'px');
			}
			if($(window).width() < $('#content').width()){
				$('#content').css('left', ($('#content').width()/2)+'px');
			} else {
				$('#content').css('left', '50%');
			}
		}
		
		//Reposition the content
		$(document).ready(function(){
			resizetext();
		})
		$(window).bind("resize", function(){ 
			resizetext();
		});