// JavaScript Document
$(document).ready(function() 
{
  adjustDivContainerSize();  
});

var browser;
var windowHeight;

function adjustDivContainerSize()
{
    browser = navigator.appName;
	
	
    if(browser=="Microsoft Internet Explorer")
    {windowHeight = (document.documentElement.clientHeight/2) -315;}	
    else															
    {windowHeight = (window.innerHeight/2)-315;}						
	
    if(windowHeight>10)
    {document.getElementById("divContainer").style.marginTop = windowHeight + "px";}
	else
	{document.getElementById("divContainer").style.marginTop = "10px";}
	
	setTimeout("adjustDivContainerSize()",250);
}

function transfer()
{
    window.location.href="http://wadlund.com";
}