jQuery(document).ready(function(){
    jQuery("ul#menu-main li:last-child").addClass("last");
    
    jQuery(function(){
	// This is the CUFON FONT target. All elements are targeted individually for complete control.
   Cufon.replace('#featured_slider h2 p', { fontFamily: 'HelveticaNeue' });
	});
	
	jQuery('#navigation li').hover(
		function () {
			//show its submenu
			jQuery('ul', this).slideDown(100);

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

});



