Cufon.replace('.page-title span');
Cufon.replace('.calendar .title h2');

var delay_dropdown_show=500
var delay_dropdown_hide=250

$(document).ready(function(){
	$('.nav li').hover(
		function() { $(this).addClass("dropdown"); $('ul', this).show(); },
		function() { $('ul', this).slideUp(delay_dropdown_hide); $(this).removeClass("dropdown"); }
	);
	$('.header li').hover(
		function() { $(this).addClass("dropdown"); $('ul', this).show(); },
		function() { $('ul', this).slideUp(delay_dropdown_hide); $(this).removeClass("dropdown"); }
	);
});

