Index: /trunk/htdocs/cacher/cacher.css
===================================================================
--- /trunk/htdocs/cacher/cacher.css	(revision 1086)
+++ /trunk/htdocs/cacher/cacher.css	(revision 1087)
@@ -12,4 +12,5 @@
 .hitsgraph { margin: auto; }
 .hitsgraph a { display: block; float: left; border: 0 solid gray; }
+.hitsgraph a { width: 2px; height: 20px; border-top-width: 1px; border-bottom-width: 1px; } /* update this along with index.php */
 .hitsgraph a * { display: block; }
 .hitsgraph a.active { border-top-color: yellow; }
Index: /trunk/htdocs/cacher/index.php
===================================================================
--- /trunk/htdocs/cacher/index.php	(revision 1086)
+++ /trunk/htdocs/cacher/index.php	(revision 1087)
@@ -112,12 +112,4 @@
 
 	$html = array();
-	static $cssOut = false;
-	if (!$cssOut) {
-		$cssOut = true;
-		$html[] = '<style type="text/css">';
-		$html[] = '.hitsgraph a { width: 2px; height: 20px; border-top-width: 1px; border-bottom-width: 1px; }';
-		$html[] = '</style>';
-	}
-
 	$width = count($ci[$key]) * 2;
 	$html[] = '<div class="hitsgraph" style="width: ' . $width . 'px">';
Index: /trunk/htdocs/common/common.css
===================================================================
--- /trunk/htdocs/common/common.css	(revision 1086)
+++ /trunk/htdocs/common/common.css	(revision 1087)
@@ -37,7 +37,6 @@
 }
 #header #banner {
-	font: 32px/51px serif;
+	font: 32px/51px "arial", serif;
 	color: white;
-	font-family: "arial", serif;
 }
 #header #banner a {
Index: /trunk/htdocs/common/common.php
===================================================================
--- /trunk/htdocs/common/common.php	(revision 1086)
+++ /trunk/htdocs/common/common.php	(revision 1087)
@@ -52,5 +52,5 @@
 				"http://www.lighttpd.net/" => "Lighttpd",
 				) as $url => $title) {
-		$html[] = sprintf('<a href="%s" target="_blank">%s</a>', $url, $title);
+		$html[] = sprintf('<a href="%s" rel="external">%s</a>', $url, $title);
 	}
 	return implode('|', $html);
@@ -119,17 +119,21 @@
 		}
 	}
-	else if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
-		foreach (explode(',', str_replace(' ', '', $_SERVER['HTTP_ACCEPT_LANGUAGE'])) as $lang) {
-			$lang = strtok($lang, ':;');
-			$file = get_language_file_ex($name, $lang);
-			if (isset($file)) {
-				$config['lang'] = $lang;
-				break;
-			}
-			if (strpos($lang, '-') !== false) {
-				$file = get_language_file_ex($name, strtok($lang, ':-'));
+	else {
+		$config['lang'] = 'en';
+
+		if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
+			foreach (explode(',', str_replace(' ', '', $_SERVER['HTTP_ACCEPT_LANGUAGE'])) as $lang) {
+				$lang = strtok($lang, ':;');
+				$file = get_language_file_ex($name, $lang);
 				if (isset($file)) {
 					$config['lang'] = $lang;
 					break;
+				}
+				if (strpos($lang, '-') !== false) {
+					$file = get_language_file_ex($name, strtok($lang, ':-'));
+					if (isset($file)) {
+						$config['lang'] = $lang;
+						break;
+					}
 				}
 			}
Index: /trunk/htdocs/common/footer.tpl.php
===================================================================
--- /trunk/htdocs/common/footer.tpl.php	(revision 1086)
+++ /trunk/htdocs/common/footer.tpl.php	(revision 1087)
@@ -4,6 +4,6 @@
 		<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" height="31" width="88" />
 	</a>
-	<a href="http://feed.w3.org/check.cgi?url=http://<?php echo $_SERVER["HTTP_HOST"], $_SERVER["REQUEST_URI"]; ?>">
-		<img src="http://validator.w3.org/feed/images/valid-rss-rogers.png" alt="Valid RSS" title="Validate my RSS feed" />
+	<a href="http://jigsaw.w3.org/css-validator/check/referer">
+		<img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" />
 	</a>
 	<div id="poweredBy">
Index: /trunk/htdocs/common/header.tpl.php
===================================================================
--- /trunk/htdocs/common/header.tpl.php	(revision 1086)
+++ /trunk/htdocs/common/header.tpl.php	(revision 1087)
@@ -14,5 +14,5 @@
 <div id="header">
 	<div id="banner">
-		<a href="http://xcache.lighttpd.net/" target="_blank"><img src="../common/xcache.png" id="logo" width="175" height="51" />
+		<a href="http://xcache.lighttpd.net/" rel="external"><img src="../common/xcache.png" id="logo" alt="XCache logo" width="175" height="51" />
 			<?php echo $xcache_version; ?> - <?php echo ucfirst($GLOBALS['module']); ?>
 		</a>
