$(document).ready(function(){
	
	$("h1.logo span").css({opacity:0, top:'10px'}).hide();

	function showBubble() {
		$("h1.logo span").stop().show().animate({ opacity:1, top:'20px' }, 500);
	};
	
	function hideBubble() {
		$("h1.logo span").stop().animate({ opacity:0, top:'10px' }, 500);
	};

	var config = {    
		sensitivity: 3,    
		interval: 100,     
		over: showBubble,   
		timeout: 350,   
		out: hideBubble  
	};

	$("h1.logo").hoverIntent(config);
	
	$('.leftnav .dropdown ul').makeacolumnlists({ cols:3, colWidth:160, equalHeight:true, startN:1 });
	
	function showNav(){
		$(this).addClass('hover');
		$(this).find('.dropdown').fadeIn(200);
	};
	function hideNav(){
		$(this).removeClass('hover');
		$(this).find('.dropdown').fadeOut(200);
	};
	
	var config2 = {    
		sensitivity: 3,    
		interval:150,     
		over: showNav,   
		timeout: 150,    
		out: hideNav     
	};

	$(".leftnav ul li").hoverIntent(config2);

});