// $(document).ready(addHover);

function addHover() {
	$("ul.actions li").each( function() {
		$(this).hover( function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		});
	});
}