diff --git a/Pic/Transmission.png b/Pic/Transmission.png
new file mode 100644
index 0000000..0267040
Binary files /dev/null and b/Pic/Transmission.png differ
diff --git a/Pic/sick.png b/Pic/sickbeard.png
similarity index 100%
rename from Pic/sick.png
rename to Pic/sickbeard.png
diff --git a/ServerStatus b/ServerStatus
new file mode 160000
index 0000000..167b150
--- /dev/null
+++ b/ServerStatus
@@ -0,0 +1 @@
+Subproject commit 167b150fc31e860c515523db20047f522fe57f13
diff --git a/config.php b/config.php
index 7bfaba3..aa0ee7d 100644
--- a/config.php
+++ b/config.php
@@ -6,16 +6,38 @@ $base = ""; //Set this to your url (without http://)
$user = ""; // Username for logging on
$pass = ""; // Password for logging on
+$sabvisible = ""; // Set to turn on or off links (0 = Off 1 = On)
$sabport = ""; // Set the ports for your services
+
+$sickvisible = "";
+$sicktype = ""; // 1 = Sickbeard / 2 = SickRage
$sickport = "";
+
+$couchvisible = "";
+$cpadultsvisible = "";
$cpadults = "";
+
+$cpkidsvisible = ""; // Set to 0 if only running single couch instance
$cpkids = "";
-$utorrentport = "";
+
+$torrentvisible = "";
+$torrenttype = ""; // 1 = uTorrent / 2 = Transmission
+$torrentport = ""; // uTorrent = 86 / Transmission = 9091
+
+$ftpvisible = "";
$ftpport = "";
+
+$madsonicvisible = "";
$madsonicport = "";
+
+$plexvisible = "";
$plexport = "";
+
+$squeezevisible = "";
$squeezeport = "";
+$jdownloadervisible = "";
+
$drivespacevisible = "1"; // Set to turn on or off drive space (0 = no 1 = yes)
$drive1visible = "1"; // Set drive visible or not ()0 = no 1 = yes)
$drive1 = "C:"; // Set the hard drives to display
diff --git a/links/couch.php b/links/couch.php
new file mode 100644
index 0000000..c9e576d
--- /dev/null
+++ b/links/couch.php
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+ "0") {
+ require "cpdual.php";
+ } else {
+ require "cpsingle.php";
+ }
+?>
+
+
\ No newline at end of file
diff --git a/links/cpdual.php b/links/cpdual.php
new file mode 100644
index 0000000..c677a86
--- /dev/null
+++ b/links/cpdual.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/cpsingle.php b/links/cpsingle.php
new file mode 100644
index 0000000..7bda385
--- /dev/null
+++ b/links/cpsingle.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/ftp.php b/links/ftp.php
new file mode 100644
index 0000000..576d054
--- /dev/null
+++ b/links/ftp.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/jdownloader.php b/links/jdownloader.php
new file mode 100644
index 0000000..bb3dbcd
--- /dev/null
+++ b/links/jdownloader.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/madsonic.php b/links/madsonic.php
new file mode 100644
index 0000000..48c12f2
--- /dev/null
+++ b/links/madsonic.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/plex.php b/links/plex.php
new file mode 100644
index 0000000..67e6553
--- /dev/null
+++ b/links/plex.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/sab.php b/links/sab.php
new file mode 100644
index 0000000..84f0f51
--- /dev/null
+++ b/links/sab.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/sickbeard.php b/links/sickbeard.php
new file mode 100644
index 0000000..a956b41
--- /dev/null
+++ b/links/sickbeard.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/sickrage.php b/links/sickrage.php
new file mode 100644
index 0000000..c0ddb06
--- /dev/null
+++ b/links/sickrage.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/sicktype.php b/links/sicktype.php
new file mode 100644
index 0000000..e68a0c8
--- /dev/null
+++ b/links/sicktype.php
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+ "1") {
+ require "sickrage.php";
+ } else {
+ require "sickbeard.php";
+ }
+?>
+
+
\ No newline at end of file
diff --git a/links/squeeze.php b/links/squeeze.php
new file mode 100644
index 0000000..96f8a4d
--- /dev/null
+++ b/links/squeeze.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/links/torrent.php b/links/torrent.php
new file mode 100644
index 0000000..afee2f8
--- /dev/null
+++ b/links/torrent.php
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+ "1") {
+ require "transmission.php";
+ } else {
+ require "utorrent.php";
+ }
+?>
+
+
\ No newline at end of file
diff --git a/links/transmission.php b/links/transmission.php
new file mode 100644
index 0000000..608371f
--- /dev/null
+++ b/links/transmission.php
@@ -0,0 +1,5 @@
+
";
+ }
+?>
\ No newline at end of file
diff --git a/links/utorrent.php b/links/utorrent.php
new file mode 100644
index 0000000..93e22b8
--- /dev/null
+++ b/links/utorrent.php
@@ -0,0 +1 @@
+
"; ?>
\ No newline at end of file
diff --git a/main.php b/main.php
index c630332..108f49e 100644
--- a/main.php
+++ b/main.php
@@ -44,19 +44,57 @@ indicateSelected(formref.switchcontrol)
-
"; ?>
-
"; ?>
-
"; ?>
+ "0") {
+ require "links/jdownloader.php";
+ }
+?>
+ "0") {
+ require "links/torrent.php";
+ }
+?>
+
+ "0") {
+ require "links/sab.php";
+ }
+?>
-
"; ?>
-
"; ?>
-
"; ?>
+ "0") {
+ require "links/sicktype.php";
+ }
+?>
+ "0") {
+ require "links/couch.php";
+ }
+?>
+ "0") {
+ require "links/ftp.php";
+ }
+?>
+
-
"; ?>
-
"; ?>
-
"; ?>
+ "0") {
+ require "links/madsonic.php";
+ }
+?>
+ "0") {
+ require "links/plex.php";
+ }
+?>
+ "0") {
+ require "links/squeeze.php";
+ }
+?>