
$(document).ready(function()
{
	$(".editbuttons").each(function (index, e)
	{
		$(e).hide();
		$(e).parent().mouseenter(function()
		{
			$(e).fadeIn(100);
		});
		$(e).parent().mouseleave(function()
		{
			$(e).fadeOut(100);
		});
	});
});
