$(document).ready(function(){
    $('ul.tree li').bind('mouseenter',function(){
		var found = $(this).find('.ssMenu');
		if(found.length > 0){
			$(this).find('.ssMenu').css('display','block');
			$(this).addClass('hover');
			Cufon.replace('.hover > .menuItem', { hover:true });
		}
	});
	$('ul.tree li').bind('mouseleave',function(){
		$(this).find('.ssMenu').css('display','none');
		$(this).removeClass('hover');
		Cufon.replace('.menuItem', { hover:false });
	});
});
