/**
 * @author Thomas Sømoen
 */
(function($){
	$.fn.addActivityHover = function(){
		return $(this).each(function(){
			var menu = $(this);
			$(this).find('ul>li').each(function(){
				var className = $(this).attr('class');
				if(!menu.hasClass(className)){
					$(this).hover(
						function(e){
							$(this).hoverFlow(e.type, { height: '37px' }, 'fast');
						},
						function(e){
							$(this).hoverFlow(e.type, { height: '32px' }, 'fast');
						}
					);
				}
			});
		});
	};
	
	$(document).ready(function(){
		$('div.menu-activity').addActivityHover();
	});
})(jQuery);

