Cufon.replace('h2, h3, h4, h5, h6, #navbar a');
jQuery(document).ready(function($) {
	$('#navbar>ul>li').hover(
		function() {
			$('ul', this).stop(true, true).slideDown(100);
		},
		function() {
			$('ul', this).stop(true, true).slideUp(100);
		}
	);
});