Index: /MediaWiki/branches/1.11/skins/FCKeditor.php
===================================================================
--- /MediaWiki/branches/1.11/skins/FCKeditor.php	(revision 1535)
+++ /MediaWiki/branches/1.11/skins/FCKeditor.php	(revision 1536)
@@ -56,5 +56,15 @@
 		<meta http-equiv="Content-Type" content="<?php $this->text('mimetype') ?>; charset=<?php $this->text('charset') ?>" />
 		<?php $this->html('headlinks') ?>
-		<title><?php $this->text('pagetitle') ?></title>
+		<title><?php
+		// FCKeditor Skin 
+		// $this->text('pagetitle')
+		
+			$pageTitle = $this->data['displaytitle'] != "" ? $this->data['displaytitle'] : $this->data['pagetitle'] ;
+			
+			if ( strrpos( $pageTitle, '/' ) != FALSE )
+				$pageTitle = substr_replace( $pageTitle, '', 0, strrpos( $pageTitle, '/' ) + 1 ) ;
+
+			echo htmlspecialchars( $pageTitle ) ;
+		?></title>
 		<style type="text/css" media="screen, projection">/*<![CDATA[*/
 			@import "<?php $this->text('stylepath') ?>/common/shared.css?<?php echo $GLOBALS['wgStyleVersion'] ?>";
@@ -95,4 +105,14 @@
 <?php if($this->data['body_onload'    ]) { ?>onload="<?php     $this->text('body_onload')     ?>"<?php } ?>
  class="mediawiki <?php $this->text('nsclass') ?> <?php $this->text('dir') ?> <?php $this->text('pageclass') ?>">
+
+	<!-- FCKeditor : Head : Start -->
+	<div class="fck_main_head">
+		<h1>
+			<a title="FCKeditor Home" href="/">FCKeditor</a>
+		</h1>
+		<ul class="fck_top_menu"><li><a title="Home Page" href="http://www.fckeditor.net/">FCKeditor Home</a></li><li><a title="FCKeditor Demo" href="http://www.fckeditor.net/demo">Demo</a></li><li><a title="FCKeditor Download" href="http://www.fckeditor.net/download">Download</a></li><li><a class="active" title="FCKeditor Documentation Site" href="http://docs.fckeditor.net/">Docs</a></li><li><a title="FCKeditor License Options" href="http://www.fckeditor.net/license">License</a></li><li><a title="Support Options" href="http://www.fckeditor.net/support">Support</a></li><li><a title="Forums" href="http://www.fckeditor.net/forums/">Forums</a></li><li><a title="Extras!" href="http://www.fckeditor.net/extras">Extras!</a></li></ul>
+	</div>
+	<!-- FCKeditor : Head : End -->
+
 	<div id="globalWrapper">
 		<div id="column-content">
@@ -100,5 +120,14 @@
 		<a name="top" id="top"></a>
 		<?php if($this->data['sitenotice']) { ?><div id="siteNotice"><?php $this->html('sitenotice') ?></div><?php } ?>
-		<h1 class="firstHeading"><?php $this->data['displaytitle']!=""?$this->html('title'):$this->text('title') ?></h1>
+		<h1 class="firstHeading"><?php 
+			// FCKeditor Skin : Commented the following line, changing the title 
+			// $this->data['displaytitle']!="" ? $this->html('title') : $this->text('title')
+			$pageTitle = $this->data['displaytitle'] != "" ? $this->data['displaytitle'] : $this->data['title'] ;
+			
+			if ( strrpos( $pageTitle, '/' ) != FALSE )
+				$pageTitle = substr_replace( $pageTitle, '', 0, strrpos( $pageTitle, '/' ) + 1 ) ;
+
+			echo htmlspecialchars( $pageTitle ) ;
+		?></h1>
 		<div id="bodyContent">
 			<h3 id="siteSub"><?php $this->msg('tagline') ?></h3>
@@ -144,4 +173,5 @@
 		</div>
 	</div>
+	<?php /* ### FCKeditor Skin
 	<div class="portlet" id="p-logo">
 		<a style="background-image: url(<?php $this->text('logopath') ?>);" <?php
@@ -149,4 +179,5 @@
 			echo $skin->tooltipAndAccesskey('n-mainpage') ?>></a>
 	</div>
+	*/ ?>
 	<script type="<?php $this->text('jsmimetype') ?>"> if (window.isMSIE55) fixalpha(); </script>
 	<?php foreach ($this->data['sidebar'] as $bar => $cont) { ?>
@@ -245,4 +276,7 @@
 		</div><!-- end of the left (by default at least) column -->
 			<div class="visualClear"></div>
+			
+			<?php /* FCKeditor Skin
+			
 			<div id="footer">
 <?php
@@ -270,4 +304,25 @@
 			</ul>
 		</div>
+		*/ ?>
+		
+		<div class="fck_bottom">
+			<div class="fck_bottomlinks">
+				<a href="http://www.fckeditor.net/jobs">Jobs!</a>
+				- <a href="http://www.fckeditor.net/terms">Terms of Use</a>
+				- <a href="http://www.fckeditor.net/privacy">Privacy</a>
+				- <a href="http://www.fckeditor.net/contact" title="Contact us">Contact</a>
+			</div>
+		<div class="copyright">
+			<div>
+				&copy; 2003 - <?php print date('Y'); ?> Frederico Caldeira Knabben (<a href="http://www.fredck.com/">FredCK.com</a>). All rights reserved.
+			</div>
+		</div>
+		<div class="fck_bottom_buttons">
+<?php
+		if($this->data['poweredbyico']) { ?>
+				<div id="f-poweredbyico"><?php $this->html('poweredbyico') ?></div>
+<?php	} ?>
+		</div>
+	</div>
 		
 	<?php $this->html('bottomscripts'); /* JS call to runBodyOnloadHook */ ?>
@@ -280,4 +335,13 @@
 -->
 <?php endif; ?>
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+var pageTracker = _gat._getTracker("UA-271067-3");
+pageTracker._initData();
+pageTracker._trackPageview();
+</script>
 </body></html>
 <?php
Index: /MediaWiki/branches/1.11/skins/MonoBook.php
===================================================================
--- /MediaWiki/branches/1.11/skins/MonoBook.php	(revision 1535)
+++ /MediaWiki/branches/1.11/skins/MonoBook.php	(revision 1536)
@@ -70,4 +70,5 @@
 		
 		<?php print Skin::makeGlobalVariablesScript( $this->data ); ?>
+		<?php $this->data['nav_urls']['mainpage']['href'] = "/"; ?> 
                 
 		<script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath' ) ?>/common/wikibits.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"><!-- wikibits js --></script>
@@ -122,5 +123,5 @@
 				 <li id="ca-<?php echo Sanitizer::escapeId($key) ?>"<?php
 					 	if($tab['class']) { ?> class="<?php echo htmlspecialchars($tab['class']) ?>"<?php }
-					 ?>><a href="<?php echo htmlspecialchars($tab['href']) ?>"<?php echo $skin->tooltipAndAccesskey('ca-'.$key) ?>><?php
+					 ?>><a href="<?php echo ($tab['href'] == "/Main_Page") ? "/" : htmlspecialchars($tab['href']); ?>"<?php echo $skin->tooltipAndAccesskey('ca-'.$key) ?>><?php
 					 echo htmlspecialchars($tab['text']) ?></a></li>
 	<?php			 } ?>
Index: /MediaWiki/branches/1.11/skins/fckeditor/IE60Fixes.css
===================================================================
--- /MediaWiki/branches/1.11/skins/fckeditor/IE60Fixes.css	(revision 1535)
+++ /MediaWiki/branches/1.11/skins/fckeditor/IE60Fixes.css	(revision 1536)
@@ -83,2 +83,16 @@
 /*{ border:1px solid Red !important;}*/
 
+/********************************
+ * FCKeditor Skin Changes
+ */
+
+#column-one 
+{
+	padding-top: 105px;
+	width: 100%;
+}
+
+#p-cactions 
+{
+	top: 98px;
+}
Index: /MediaWiki/branches/1.11/skins/fckeditor/IE70Fixes.css
===================================================================
--- /MediaWiki/branches/1.11/skins/fckeditor/IE70Fixes.css	(revision 1535)
+++ /MediaWiki/branches/1.11/skins/fckeditor/IE70Fixes.css	(revision 1536)
@@ -73,2 +73,16 @@
 	margin-right: 0;
 }
+
+/********************************
+ * FCKeditor Skin Changes
+ */
+
+#p-cactions
+{
+	top: 91px;
+}
+
+#content
+{
+	margin-top: 2.8em !important;
+}
Index: /MediaWiki/branches/1.11/skins/fckeditor/main.css
===================================================================
--- /MediaWiki/branches/1.11/skins/fckeditor/main.css	(revision 1535)
+++ /MediaWiki/branches/1.11/skins/fckeditor/main.css	(revision 1536)
@@ -1586,2 +1586,216 @@
 	font-size: 90%;
 }
+
+/********************************
+ * FCKeditor Skin Changes
+ */
+
+body 
+{
+	background: inherit;
+	background-color: #F9F2DE;
+	background-image: none !important;
+}
+
+.portlet h5 
+{
+	text-transform: none;
+}
+
+#p-personal
+{
+	background-color: #ffffff;
+	border-top: 1px solid #E2D8C0;
+	border-bottom: 1px solid #E2D8C0;
+	padding: 2px;
+}
+
+#p-personal ul 
+{
+	text-align: left;
+	padding: 0pt 2em 0pt 0px;
+}
+
+#column-one 
+{
+	padding-top: 21px;
+}
+
+.fck_main_head 
+{
+	height: 42px;
+	font-family: Verdana,Geneva,Arial,helvetica,sans-serif;
+	font-size: 12px;
+	margin-top: 15px;
+	margin-left: 30px;
+	margin-right: 30px;
+	margin-bottom: 20px;
+}
+
+.fck_main_head h1 
+{
+	background: transparent url(http://www.fckeditor.net/images/logotop.gif) no-repeat scroll left top;
+	float: left;
+	height: 47px;
+	margin: 0px;
+	position: absolute;
+	width: 209px;
+	border-style: none;
+	padding-top: 0px;
+}
+
+.fck_main_head h1 a 
+{
+	float: left;
+	height: 47px;
+	text-indent: -5000px;
+	width: 209px;
+}
+
+.fck_main_head a 
+{
+	color:#FF6600;
+	font-weight:bold;
+	text-decoration:none;
+}
+
+.fck_main_head a:hover 
+{
+	text-decoration:underline;
+}
+
+.fck_main_head a:visited 
+{
+	color:#FF6600;
+}
+
+ul.fck_top_menu 
+{
+	font-weight:bold;
+	margin:0pt;
+	padding:29px 0pt 0pt 200px;
+	text-align:right;
+	line-height: normal;
+}
+
+ul.fck_top_menu li 
+{
+	display:inline;
+	list-style-image:none;
+	list-style-position:outside;
+	list-style-type:none;
+	margin:0pt 0pt 0pt 5px;
+	padding:0pt;
+}
+
+ul.fck_top_menu a 
+{
+	padding-top:7px;
+	vertical-align:bottom;
+}
+
+ul.fck_top_menu a.active
+{
+	background:transparent url(http://www.fckeditor.net/images/menu_activeitem.gif) no-repeat scroll left top;
+	color:#663300 !important;
+}
+
+.fck_bottomlinks 
+{
+	border-bottom:1px solid #E2D8C0;
+	margin-bottom:5px;
+	padding-bottom:5px;
+	text-align:center;
+}
+
+.fck_bottom_buttons 
+{
+	float:right;
+}
+
+.fck_bottom
+{
+	margin-left:8px;
+	margin-right:8px;
+	font-family: Verdana,Geneva,Arial,helvetica,sans-serif;
+	font-size: 12px;
+}
+
+.fck_bottom a 
+{
+	color:#FF6600;
+	font-weight:bold;
+	text-decoration:none;
+}
+
+.fck_bottom a:hover 
+{
+	text-decoration:underline;
+}
+
+div.copyright 
+{
+	color:#7F7D7A;
+	float:left;
+	font-size:11px;
+}
+
+#p-personal 
+{
+	top: 67px;
+}
+
+#p-personal li a:hover 
+{
+	background-color: Transparent;
+}
+
+#p-cactions 
+{
+	top: 92px;
+	left: auto;
+	padding-left:auto;
+	right: 30px;
+	width: 100%;
+}
+
+#p-cactions .pBody 
+{
+	text-align: right;
+}
+
+#p-cactions li 
+{
+	border-color: #E2D8C0;
+}
+
+.pBody 
+{
+	border-color: #E2D8C0;
+}
+
+#content 
+{
+	padding-top: 0.5em;
+	padding-left: 1.5em;
+	padding-bottom: 1.5em;
+	border-color: #E2D8C0;
+}
+
+div.fck_customtitle
+{
+	font-size: 188%; 
+	padding-top: 0.78em; 
+	padding-bottom: 0.17em; 
+	position: absolute; 
+	left: 0.8em;
+	right: 0.5em; 
+	top: 0px; 
+	background-color: #FFFFFF;
+	border-bottom: 1px solid #AAAAAA;
+}
+
+#p-Navigation h5
+{
+	visibility: hidden;
+}
