Cufon.replace('#contact');
Cufon.replace('h1', {hover:true});
Cufon.replace('h2', {hover:true});
Cufon.replace('h3', {hover:true});
Cufon.replace('h4', {hover:true});

	
     $(function() {
		 $('#subheader li ul').hide();
			$('#subheader li:has(ul)').hoverIntent(function() {
			$(this).find('ul').slideDown();},
			function() {$(this).find('ul').slideUp();}
			);        
        $('#header ul').superfish({ 
	        hoverClass:    'sfhover',
            delay:       600,                            // one second delay on mouseout 
            animation:   {opacity:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
		});
