jQuery(document).ready(function(){		
         
         Cufon.replace('h1,h2,h3,h4,h5,h6');
         
         jQuery('#main-nav li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(100);

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


