Rename lb dir to lbs
diff --git a/rackspace/lb/lbs/urls.go b/rackspace/lb/lbs/urls.go
new file mode 100644
index 0000000..3df99ab
--- /dev/null
+++ b/rackspace/lb/lbs/urls.go
@@ -0,0 +1,17 @@
+package lbs
+
+import (
+	"strconv"
+
+	"github.com/rackspace/gophercloud"
+)
+
+const path = "loadbalancers"
+
+func resourceURL(c *gophercloud.ServiceClient, id int) string {
+	return c.ServiceURL(path, strconv.Itoa(id))
+}
+
+func rootURL(c *gophercloud.ServiceClient) string {
+	return c.ServiceURL(path)
+}