function resize()
{
	var imageDiv = document.getElementById('image');
	var image = imageDiv.getElementsByTagName('img')[0];
	
	var percentH = (window.innerHeight - 70) / document.originalImage['height'];
	var percentV = (window.innerWidth - 40) / document.originalImage['width'];
	
	if (percentH < 1 || percentV < 1)
	{
		image.height = document.originalImage['height'] * Math.min(percentV, percentH);
	}
	else
	{
		image.height = document.originalImage['height'];
	}
	var marginV = ((window.innerWidth - image.width - 40) / 2) + 'px';
	var marginH = ((window.innerHeight - image.height - 30) / 2) + 'px';
	
	document.getElementsByTagName('h1')[0].style.marginRight = marginV;
	imageDiv.style.top = marginH;
}

$(window).load(function()
{
	var image = document.getElementById('image').getElementsByTagName('img')[0];
	document.originalImage = {'height' : image.height, 'width' : image.width};
});

$(window).load(resize);
$(window).resize(resize);