*** empty log message ***
diff --git a/example.html b/example.html
deleted file mode 100644
index 120c8b3..0000000
--- a/example.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

-<head>

-

-<meta http-equiv="content-type" content="text/html; charset=utf-8" />

-<meta http-equiv="content-language" content="en" />

-

-<link href="jquery.zrssfeed.css" rel="stylesheet" type="text/css" />

-

-<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>

-<script src="jquery.zrssfeed.min.js" type="text/javascript"></script>

-

-<title>zRSSFeed Example</title>

-</head>

-<body>

-

-<h1>zRSSFeed Example</h1>

-

-<script type="text/javascript">

-$(document).ready(function () {

-	$('#test').rssfeed('http://pipes.yahoo.com/pipes/pipe.run?_id=e3109ca0ef00e70403285b7588e457d2&_render=rss', {

-		limit: 5

-	});

-});

-</script>

-

-<div id="test"></div>

-

-</body>

-</html>
\ No newline at end of file
diff --git a/example_ticker.css b/example_ticker.css
deleted file mode 100644
index 140b798..0000000
--- a/example_ticker.css
+++ /dev/null
@@ -1,40 +0,0 @@
-/*

- * Example of RSS Ticker Styling

- *

- * Version: 1.0.1

- * (c) Copyright 2010, Zazar Ltd

- *

- */

-

-.rssFeed

-{

-	font-family: Arial, Helvetica, sans-serif;

-	font-size: small;

-	width: 400px;

-	margin-bottom: 2em;

-}

-.rssFeed a

-{

-	color: #444;

-	text-decoration: none;

-}

-.rssFeed a:hover

-{

-	color: #000;

-	text-decoration: underline;

-}

-

-.rssHeader { padding: 0.2em 0; }

-

-.rssBody { border: 4px solid #666; }

-.rssRow h4, .rssRow p, .rssRow div

-{

-	margin: 0;

-	padding: 0.5em;

-}

-

-#ticker1 .odd { background-color: #e8e8fc; }

-#ticker1 .even { background-color: #d4d4e8; }

-

-#ticker2 .odd { background-color: #e8fce8; }

-#ticker2 .even { background-color: #d4e8d4; }
\ No newline at end of file
diff --git a/example_ticker.html b/example_ticker.html
deleted file mode 100644
index 8de9cae..0000000
--- a/example_ticker.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

-<head>

-

-<meta http-equiv="content-type" content="text/html; charset=utf-8" />

-<meta http-equiv="content-language" content="en" />

-

-<link href="example_ticker.css" rel="stylesheet" type="text/css" />

-

-<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>

-<script src="jquery.zrssfeed.min.js" type="text/javascript"></script>

-<script src="jquery.vticker.js" type="text/javascript"></script>

-

-<title>RSS Multiple Ticker Example - Using zRSSFeed and vTicker</title>

-</head>

-<body>

-

-<h1>RSS Multiple Ticker Example - Using zRSSFeed and vTicker</h1>

-

-<script type="text/javascript">

-$(document).ready(function () {

-	$('#ticker1').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews').ajaxStop(function() {

-		$('#ticker1 div.rssBody').vTicker();

-	});

-

-	$('#ticker2').rssfeed('http://feeds.bbc.co.uk/iplayer/highlights/tv').ajaxStop(function() {

-		$('#ticker2 div.rssBody').vTicker({ showItems: 1});

-	});

-});

-</script>

-

-<div id="ticker1"></div>

-<div id="ticker2"></div>

-

-</body>

-</html>
\ No newline at end of file
diff --git a/feed.js b/feed.js
deleted file mode 100644
index 0f58510..0000000
--- a/feed.js
+++ /dev/null
@@ -1,45 +0,0 @@
-<!-- ++Begin Dynamic Feed Wizard Generated Code++ -->
-  <!--
-  // Created with a Google AJAX Search and Feed Wizard
-  // http://code.google.com/apis/ajaxsearch/wizards.html
-  -->
-
-  <!--
-  // The Following div element will end up holding the actual feed control.
-  // You can place this anywhere on your page.
-  -->
-  <div id="feed-control">
-    <span style="color:#676767;font-size:11px;margin:10px;padding:4px;">Loading...</span>
-  </div>
-
-  <!-- Google Ajax Api
-  -->
-  <script src="http://www.google.com/jsapi?key=notsupplied-wizard"
-    type="text/javascript"></script>
-
-  <!-- Dynamic Feed Control and Stylesheet -->
-  <script src="http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js"
-    type="text/javascript"></script>
-  <style type="text/css">
-    @import url("http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css");
-  </style>
-
-  <script type="text/javascript">
-    function LoadDynamicFeedControl() {
-      var feeds = [
-	{title: 'Eclipse RT',
-	 url: 'http://wiki.eclipse.org/index.php?title=Special:Recentchanges&feed=rss'
-	}];
-      var options = {
-        stacked : false,
-        horizontal : false,
-        title : ""
-      }
-
-      new GFdynamicFeedControl(feeds, 'feed-control', options);
-    }
-    // Load the feeds API and set the onload callback.
-    google.load('feeds', '1');
-    google.setOnLoadCallback(LoadDynamicFeedControl);
-  </script>
-<!-- ++End Dynamic Feed Control Wizard Generated Code++ -->
\ No newline at end of file
diff --git a/rap-posts.css b/rap-posts.css
new file mode 100644
index 0000000..b7a16c7
--- /dev/null
+++ b/rap-posts.css
@@ -0,0 +1,12 @@
+@CHARSET "UTF-8";
+
+.rssRow p {
+  padding: 0;
+  color: #444444;
+}
+
+.rssIcon {
+  position: relative;
+  left: 83px;
+  top: 2px;
+}
diff --git a/testweb/index.php b/testweb/index.php
index 046696e..0261337 100755
--- a/testweb/index.php
+++ b/testweb/index.php
@@ -10,7 +10,7 @@
 

 $App->AddExtraHtmlHeader( '<link rel="stylesheet" type="text/css" href="/rt/rap-big-header.css"/>' );

 $App->AddExtraHtmlHeader( '<link rel="stylesheet" type="text/css" href="/rt/rap-posts.css"/>' );

-$App->AddExtraHtmlHeader( '<script type="text/javascript" src="http://w3.eclipsesource.com/www/js/rap/jquery.zrssfeed.min.js"></script>' );

+$App->AddExtraHtmlHeader( '<script type="text/javascript" src="/rt/jquery.zrssfeed.min.js"></script>' );

 

 // require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/rss.php");

 //$rtnews = rss_to_html($_SERVER['DOCUMENT_ROOT'] . "/rt/rt.rss", "/rt/rt.rss", false, "short", "5");

@@ -127,39 +127,17 @@
 </div>

 

 <div id="rightcolumn">

-	<!--div class="sideitem">

-	    <h6>Recent RT Posts <a href="http://pipes.yahoo.com/pipes/pipe.run?_id=e3109ca0ef00e70403285b7588e457d2&_render=rss" class="rssIcon"><img src="/rap/images/feed.png" alt="feed"></a></h6>

-	    <div id="rtBlogs"></div>

-	    <script type="text/javascript" src="//www.google.com/jsapi"></script>

-	    <script type="text/javascript" src="/rt/blog.js"></script>

-	    <script type="text/javascript">

-			$( document ).ready( function () {

-			    google.load("feeds", "1");

-				var blog = new BlogPreview(document.getElementById("rtBlogs"));

-		      	blog.show("http%3A%2F%2Fpipes.yahoo.com%2Fpipes%2Fpipe.run%3F_id=e3109ca0ef00e70403285b7588e457d2%26_render%3Drss");

-		    }	

-	    </script>

-	</div-->

-

 	<div class="sideitem">

 	    <h6>Recent RT Posts <a href="http://pipes.yahoo.com/pipes/pipe.run?_id=e3109ca0ef00e70403285b7588e457d2&_render=rss" class="rssIcon"><img src="/rap/images/feed.png" alt="feed"></a></h6>

 	    <div id="rssFeed"></div>

 	    <script type="text/javascript">

 	      $( document ).ready( function () {

 	        $( '#rssFeed' ).rssfeed( 'http%3A%2F%2Fpipes.yahoo.com%2Fpipes%2Fpipe.run%3F_id=e3109ca0ef00e70403285b7588e457d2%26_render%3Drss',

-	          { limit: 5, header : false, titletag : "h5", date : false, content : true } );

+	          { limit: 5, header : false, titletag : "h5", date : false, content : false } );

 	      } );

 	    </script>

 	</div>

 

-	<!--div class="sideitem">

-		<h6>

-			<a href="/rt/news.php">News</a>

-			<a href="/rt/news/"><img src="/images/rss.gif" align="right" title="RSS Feed" alt="[RSS]" /></a>

-		</h6>

-		$rtnews

-	</div-->

-

   <div style="position: relative; margin-bottom: 10px;">

     <a href="http://www.eclipse.org/eclipsert/"><img alt="EclipseRT"

         src="/rap/images/logos/EclipseRT.png"