//	http://pokex.happyfruit.net
//
//				******    *****   **   **   ****** 
//				*******  **   **  **  **    *****
//				**    *  **   **  ****      **
//				******   **   **  *****     *****
//				**       **   **  **   **   **
//				**        *****   **    **  *******
//	
//							***    ***
//							**    **
//							  **  **
//							    **
//							  **  **
//							 **    **
//							***    ***
//				
//	 ******  ***  ***    *****    ***    **   ******     *****
//	*****    **    **   **   **   ** *   **  ***         **
//	**       ********  **     **  **  *   *  **    ***   **
//	**       ********  *********  **   *  *  **     **   ****
//	****     **    **  **     **  **   * **  ***     *   **
//	 ******  ***  ***  **     **  **    **     ******    ******
//                                        by Winnie
//					
//	Thanks to http://w3schools.com/js/tryit.asp?filename=tryjs_timing_infinite
//	the code that I modified :T
//	Also on geocities.com/swtxwinnie & freewebtown.com/zzlx
//

var c= "<a href='http://pokex.happyfruit.net' target=_blank><img src='http://i23.photobucket.com/albums/b384/zlx/000.gif' border='0' title='PokeXchange'></a>";
var t;
var ppl = new Array();
var img = new Array();
var url = new Array();


function timedCount()
{
document.getElementById('txt').innerHTML=c;
c=rand();
t=setTimeout("timedCount()",2000);
}

ppl[1] = 'PokeXchange';
img[1] = 'http://i23.photobucket.com/albums/b384/zlx/000.gif';
url[1] = 'http://pokex.happyfruit.net';

ppl[2] = 'Winnie';
img[2] = 'http://i23.photobucket.com/albums/b384/zlx/004.gif';
url[2] = 'http://happyfruit.net';

ppl[3] = 'Colleen';
img[3] = 'http://img174.imageshack.us/img174/9481/385ay3.gif';
url[3] = 'http://fan.houki-boshi.org/';

ppl[4] = 'Tony';
img[4] = 'http://img401.imageshack.us/img401/1953/pikachuiu5vo1.jpg';
url[4] = '#';

function rand()
{
	var r = Math.floor(Math.random()*img.length)
	if (r == 0)
		r = 1
	return '<a href=http://pokex.happyfruit.net><img src=http://img.photobucket.com/albums/v119/xwinnie/000.gif border=0 title=PokeXchange></a><a href=' + url[r] + '><img src=' + img[r] + ' border="0" title=' + ppl[r] +'></a>';
}