$(document).ready(function() {

	
	Cufon.replace('#content h1', { fontFamily: 'Clarendon' }); 
	Cufon.replace('#vineyard', {fontFamily:'EmilyAustin'}); 



	//  temp hovers
	
	
	var navHover = {    
	     sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)    
	     interval: 0, // number = milliseconds for onMouseOver polling interval    
	     over: shownav, // function = onMouseOver callback (REQUIRED)    
	     timeout: 0, // number = milliseconds delay before onMouseOut    
	     out: hidenav // function = onMouseOut callback (REQUIRED)    
	};

	$('.navParent').hoverIntent( navHover );

	$('.daddy').mouseenter(function() {
		$(this).next().fadeIn(250).addClass('active');
	});

	function shownav() {
		//$(this).fadeIn(250);
	}
	
	function hidenav() {
		$(this).children('.active').fadeOut(150).removeClass('active');
	}
	
	$('#exploreNav').mouseenter(function() {
		$(this).next().fadeIn(250);
	});
	
	$('#exploreNavWrap').mouseleave(function() {
		$('#explore').fadeOut(250);
	});
	

});      
		
		
		
		
		
		

