jQuery(document).ready(function () {	
	
	Cufon.replace('#main-inner h1', { fontFamily: 'Papyrus' }, {hover: true});
	
	jQuery("ul li:last-child").addClass("last");
	
	jQuery('#navigation li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(100);

		}, 
		function () {
			//hide its submenu
			jQuery('ul', this).slideUp(100);			
		}
	);	
});
