google.load("mootools", "1.2.3");

function activateHover() 
{
	$$('li').each(function(el)
	{
        el.addEvent('mouseenter',function(e)
		{
            el.addClass("hover");
        });
        el.addEvent('mouseleave',function(e)
		{
            el.removeClass("hover");
        });
	});
}

function fixIEResize()
{
	$('intro').style.position = "absolute";
	$('intro').style.position = "relative"; 
}

Cufon.replace('h1', {
	color: '-linear-gradient(#ffffff, #cccccc)'
});
Cufon.replace('h2');

window.onload = function()
{
	$('policylink').addEvent('click',function(e)
		{
			window.open(this.href,"policies","height=400, width=400, resizable=0, scrollbars=1, menubar=0");
			return false;
		}
	);
}
