// JavaScript Document
	var changeWindowSize  = function (){
		var href;
		var clientHeight;
		
		href = this.get('class');
		clientHeight = document.documentElement.clientHeight;
		contentHeight = clientHeight-50;
		
		$('container').tween('top',50);
		$('siteContainer').tween('height',clientHeight);
		$('container').tween('top',0);
		$('topContainer').tween('height',contentHeight);
		$('smallRightSpacer').tween('height',contentHeight);
		$('smallLeftSpacer').tween('height',contentHeight);
		
		setTimeout("window.location='" + href + "'",900);
	}
	
	redirectUrl= function(url)
	{
		window.location = url;
			
	}
	window.addEvent('domready', function()
	{
		$$('li a').addEvent('click', changeWindowSize);
	});