
 

Cufon.replace('h1, h2, h3, .blue-button, .o-button, .g-button', { fontFamily: 'Calibri' });
Cufon.replace('#menu a, #menu a:hover, #menu p', { hover: true, fontFamily: 'Franklin Gothic Demi Cond' });


		window.onload = function()
	{
		var lis = document.getElementsByTagName('li');
		for(i = 0; i < lis.length; i++)
		{
			var li = lis[i];
			if (li.className == 'headlink')
			{
				li.onmouseover = function() { this.getElementsByTagName('ul').item(0).style.display = 'block'; }
				li.onmouseout = function() { this.getElementsByTagName('ul').item(0).style.display = 'none'; }
			}
		}
	}      
	/*$(document).ready(function(){
		$('li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	});*/
	