Index: branches/2.6.x/CHANGELOG
===================================================================
--- branches/2.6.x/CHANGELOG	(revision 455)
+++ branches/2.6.x/CHANGELOG	(revision 456)
@@ -11,6 +11,10 @@
 ! = Update/Change
 
 ------------------------------------- 2.6.6 -------------------------------------
+08-May-2007 Matthias Gallas
++	Added wrapper to functions.php if mb_string is not available (Thanks to thorn)
++	Added new functions page_css and page_javascript to the built in templates
++	Added search highlight class to css files of the built in templates
 30-Apr-2007 Matthias Gallas
 #	Fixed ticket #392; root_parent not being set correctly (Thanks to eggsurplus)
 10-Apr-2007 Matthias Gallas
Index: branches/2.6.x/wb/templates/allcss/screen.css
===================================================================
--- branches/2.6.x/wb/templates/allcss/screen.css	(revision 455)
+++ branches/2.6.x/wb/templates/allcss/screen.css	(revision 456)
@@ -72,6 +72,9 @@
 	font-size: 10px;
 	vertical-align: middle;
 }
+.highlight {
+	background-color: #D0D0D0;
+}
 .banner a {
 	color: #FFFFFF;
 }
Index: branches/2.6.x/wb/templates/allcss/index.php
===================================================================
--- branches/2.6.x/wb/templates/allcss/index.php	(revision 455)
+++ branches/2.6.x/wb/templates/allcss/index.php	(revision 456)
@@ -38,6 +38,8 @@
 <meta name="keywords" content="<?php page_keywords(); ?>" />
 <link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" />
 <link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" />
+<?php page_css(); ?>
+<?php page_javascript(); ?>
 </head>
 <body>
 
Index: branches/2.6.x/wb/templates/round/screen.css
===================================================================
--- branches/2.6.x/wb/templates/round/screen.css	(revision 455)
+++ branches/2.6.x/wb/templates/round/screen.css	(revision 456)
@@ -74,6 +74,9 @@
 .menu_current {
 	font-weight: bold;
 }
+.highlight {
+	background-color: #D0D0D0;
+}
 .border {
 	font-size: 1px;
 	height: 10px;
Index: branches/2.6.x/wb/templates/round/index.php
===================================================================
--- branches/2.6.x/wb/templates/round/index.php	(revision 455)
+++ branches/2.6.x/wb/templates/round/index.php	(revision 456)
@@ -38,6 +38,8 @@
 <meta name="keywords" content="<?php page_keywords(); ?>" />
 <link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" />
 <link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" />
+<?php page_css(); ?>
+<?php page_javascript(); ?>
 </head>
 <body>
 
Index: branches/2.6.x/wb/templates/simple/screen.css
===================================================================
--- branches/2.6.x/wb/templates/simple/screen.css	(revision 455)
+++ branches/2.6.x/wb/templates/simple/screen.css	(revision 456)
@@ -46,6 +46,9 @@
 .current {
 	font-weight: bold;
 }
+.highlight {
+	background-color: #D0D0D0;
+}
 .content {
 	background-color: #FFFFFF;
 	padding: 20px;
Index: branches/2.6.x/wb/templates/simple/index.php
===================================================================
--- branches/2.6.x/wb/templates/simple/index.php	(revision 455)
+++ branches/2.6.x/wb/templates/simple/index.php	(revision 456)
@@ -38,6 +38,8 @@
 <meta name="keywords" content="<?php page_keywords(); ?>" />
 <link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" />
 <link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" />
+<?php page_css(); ?>
+<?php page_javascript(); ?>
 </head>
 <body>
 
