addEventHandler ( "onClientMouseEnter", resouceRoot,
	function ( )
		if source == label then
			guiLabelSetColor ( label, 255, 255, 255 )
		end
	end
)
addEventHandler ( "onClientMouseLeave", resouceRoot,
	function ( )
		if source == label then
			guiLabelSetColor ( label, 255, 255, 0 )
		end
	end
)