
var menu_actions = 
{
	'div#sales_menu ul li' : function(element)
	{
		element.onmouseover = function()
		{
			this.style.backgroundColor = "rgb(131,144,124)";
			this.firstChild.style.color = "white";
		};
		element.onmouseout = function()
		{
			this.style.backgroundColor = "";
			this.firstChild.style.color = "";
		};		
	}	
};

Behaviour.register(menu_actions);
