diff --git a/README.md b/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..47ea78bd5d9f3fdee636aa808dd0f950a98879cb 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,7 @@
+## Rutgers Bus Map
+
+### Installation
+
+* Copy working MySQL DB
+* Move daemon to /etc/init.d/busmap and customize
+* # pear install system_daemon
diff --git a/ajax.php b/ajax.php
index 1b8ec2c47ea63646f950e222a970e601eb4bf130..718b89b85e3975901d1a2af230cea7a1ea7c6ba2 100644
--- a/ajax.php
+++ b/ajax.php
@@ -16,7 +16,7 @@ if ($_GET['command'] == "vehicleLocations") {
 	$db = dbc();
 
 	// MAX age of a bus location to return
-	$maxAge = 60;
+	$maxAge = 120;
 	
 	$time = 0;
 	if (isset($_GET['t'])) $time = $db->real_escape_string((int)$_GET['t']);
@@ -131,4 +131,4 @@ function cleanRouteName($name) {
 	return $name;
 }
 
-?>
\ No newline at end of file
+?>
diff --git a/cron/nextbus.php b/cron/nextbus.php
index fd2d9d50a5485da2d5bd11f1c1277d9b26216b5b..38b2bd20ed656dada368e4f193d80abc4d08a850 100644
--- a/cron/nextbus.php
+++ b/cron/nextbus.php
@@ -27,7 +27,7 @@ $fetchData = array(
 	"vehicleLocations" => array(
 		"url"		=> "http://webservices.nextbus.com/service/publicXMLFeed?command=vehicleLocations&a=rutgers&t=0",
 		"refetch"	=> 3,	// only fetch if our data is this stale
-		"dropStale"	=> 60, // data older than this will be wiped
+		"dropStale"	=> 120, // data older than this will be wiped
 		"dbQueries"	=> function($dbConn, $xml) { // do things and return an array of database queries, or false.
 			$queries = array("TRUNCATE TABLE `vehicleLocations`");
 			
@@ -94,4 +94,4 @@ function sanitize($string) {
 	return preg_replace($pattern,"",$string);
 }
 
-?>
\ No newline at end of file
+?>
diff --git a/daemon b/daemon
index 32e06828284de3df0607163ba30ac074ea9bd0c6..2f1bda06ad91363db87fac9df40221d3f71ab249 100755
--- a/daemon
+++ b/daemon
@@ -19,10 +19,10 @@
 PATH=/sbin:/usr/sbin:/bin:/usr/bin
 DESC="RU Bus Map"
 NAME=busmapDaemon.php
-DAEMON=/home/anton/www/rutge.rs/cron/busmapDaemon.php
+DAEMON=/var/www/rutge.rs/cron/busmapDaemon.php
 DAEMON_ARGS=""
 PIDFILE=/var/run/busmap/busmap.pid
-SCRIPTNAME=/etc/init.d/busmapDaemon.php
+SCRIPTNAME=/etc/init.d/busmap
 
 # Exit if the package is not installed
 [ -x "$DAEMON" ] || exit 0
diff --git a/js/script.js b/js/script.js
index 043e3e06e045e6198b4414274d56ce7056a98c05..67d4989065c0366e726ba388437207e108e3e15b 100644
--- a/js/script.js
+++ b/js/script.js
@@ -330,7 +330,7 @@ function updateMapVehicles(routes,vehicles) {
 
 				window.busMarkers[vehicles[i]['routeTag']][i] = L.marker([vehicles[i]['lat'], vehicles[i]['lon']], {
 					icon: L.icon({
-						iconUrl: 'https://busmap.antsar-static.com/img/bus.png',
+						iconUrl: 'https://rutgers.antsar-static.com/img/bus.png',
 						iconSize: [21,25],
 						iconAnchor: [10,12],
 					}),
@@ -387,4 +387,4 @@ function ol( object ) {
         }
     }
     return length;
-};
\ No newline at end of file
+};