Cufon.replace('#top-nav a strong');
Cufon.replace('.content-in h3');
Cufon.replace('.content-in h4');
Cufon.replace('.schedule thead td');

$(document).ready(function(){
	$("#top-nav>li").hover(
		function(){
			$("div", this).fadeIn('fast');
			$("a", this).eq(0).addClass('hover');
		},
		function(){
			$("div", this).fadeOut('normal');				
			$("a", this).eq(0).removeClass('hover');
		}
	);


});

