/**
 * @author richardmerchant
 */

 $(function(){
 	// loop through each menu and add on hover to them
	$("#treemenu1 > li").each(function(){
		$(this).mouseover(function(){
			$(this).addClass("eu_hover");

		});
		
		$(this).mouseout(function(){
			$(this).removeClass("eu_hover");

		});
	});
 });

