4 $
 * @since		PHP 5
 * @require		PHP 4.0.0 (user_error)
 */
if (!function_exists('stripos')) {
	function stripos($haystack, $needle, $offset = null)
	{
		if (!is_scalar($haystack)) {
			user_error('stripos() expects parameter 1 to be string, ' .
				gettype($haystack) . ' given', E_USER_WARNING);
			return false;
		}

		if (!is_scalar($needle)) {
			user_error('stripos() needle is not a string or an integer.', E_USER_WARNING);
			return false;
		}

		if (!is_int($offset) && !is_bool($offset) && !is_null($offset)) {
			user_error('stripos() expects parameter 3 to be long, ' .
				gettype($offset) . ' given', E_USER_WARNING);
			return false;
		}

		// Manipulate the string if there is an offset
		$fix = 0;
		if (!is_null($offset)) {
			if ($offset > 0) {
				$haystack = substr($haystack, $offset, strlen($haystack) - $offset);
				$fix = $offset;
			}
		}

		$segments = explode(strtolower($needle), strtolower($haystack), 2);

		// Check there was a match
		if (count($segments) === 1) {
			return false;
		}

		$position = strlen($segments[0]) + $fix;
		return $position;
	}
}

/**
 * Ported PHP5 function to PHP4 for forward compatibility
 */
function clone($object) {
      return $object;
}
?><?xml version="1.0" encoding="iso-8859-1"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
	<channel>
		<title>Newsfeeds www.jclemens.com</title>
		<description>News from www.jclemens.com powered by Joomla!</description>
		<link>http://www.jclemens.com/Joomla</link>
		<lastBuildDate>Fri, 18 May 2012 23:34:50 +0100</lastBuildDate>
		<generator>FeedCreator 1.7.2</generator>
		<image>
			<url>http://www.jclemens.com/Joomla/images/M_images/joomla_rss.png</url>
			<title>Newsfeeds www.jclemens.com</title>
			<link>http://www.jclemens.com/Joomla</link>
			<description>News from www.jclemens.com powered by Joomla!</description>
		</image>
		<item>
			<title>Welcome to www.jclemens.com</title>
			<link>http://www.jclemens.com/Joomla/content/view/1/2/lang,en/</link>
			<description>Thanks for surfing to our website and we hope you enjoy your stay. We are forever updating and adding to...</description>
			<category>J. Clemens News - Latest News</category>
			<pubDate>Sat, 12 Jun 2004 11:54:06 +0100</pubDate>
		</item>
		<item>
			<title>Welcome Emily</title>
			<link>http://www.jclemens.com/Joomla/content/view/109/2/lang,en/</link>
			<description>Today Tamara Engelhardt, Joerg&amp;#39;s Sister, gave birth to Emily Carlita Engelhardt. She is 21 inches and change long and healty....</description>
			<category>J. Clemens News - Latest News</category>
			<pubDate>Tue, 14 Oct 2008 10:18:26 +0100</pubDate>
		</item>
		<item>
			<title>Formula 1™ - Scuderia Speed</title>
			<link>http://www.jclemens.com/Joomla/content/view/106/9/lang,en/</link>
			<description>Most of you still remember our old F1&amp;trade; site Scuderia Speed (http://www.jclemens.com/F1/Formula1.htm) . Prior to the 2007 season, we discontinued...</description>
			<category>Homepage News - Newsflash</category>
			<pubDate>Thu, 27 Mar 2008 21:20:13 +0100</pubDate>
		</item>
		<item>
			<title>New Formula 1 Season</title>
			<link>http://www.jclemens.com/Joomla/content/view/95/9/lang,en/</link>
			<description>Start your engines...let&amp;#39;s get ready for the new F1 World Championship.The season starts at Melbourne&amp;rsquo;s Albert Park. 2008 FORMULA 1...</description>
			<category>This and that - Sports</category>
			<pubDate>Thu, 13 Mar 2008 13:40:02 +0100</pubDate>
		</item>
		<item>
			<title>Welcome Ben!</title>
			<link>http://www.jclemens.com/Joomla/content/view/90/2/lang,en/</link>
			<description>Litte Ben was born 02/10/2008 at 6:57 a.m. in Trier, Germany.At birth, he was 49cm (19.29 ) long, and his...</description>
			<category>J. Clemens News - Latest News</category>
			<pubDate>Sun, 10 Feb 2008 09:29:39 +0100</pubDate>
		</item>
	</channel>
</rss>

