﻿$(document).ready(function () 
	{	
		$('.manie li:has(ul) > a').addClass('more'); 
		$('a.more').append('<span class="arrow">&nbsp;&nbsp;&raquo;</span>'); 
		$('.manie li').hover(function () {
			$(this).find('ul:first').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).addClass('active_list');
		}, function () {
			$(this).children('ul.active_list').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).removeClass('active_list');
		});	 
	});
