var re;
re = new RegExp(".*[url]?.*(http:\/\/[a-zA-Z0-9\.\/_-]*)","i");
re.compile(".*[url]?.*(http:\/\/[a-zA-Z0-9\.\/_-]*)","i");

cjurls = new Array
	(
	'http://www.thumbhell.com/st/niches/amateurs.shtml',
	'http://www.thumbhell.com/st/niches/anal.shtml',
	'http://www.thumbhell.com/st/niches/asians.shtml',
	'http://www.thumbhell.com/st/niches/ass.shtml',
	'http://www.thumbhell.com/st/niches/bigtits.shtml',
	'http://www.thumbhell.com/st/niches/bikini.shtml',
	'http://www.thumbhell.com/st/niches/bisexual.shtml',
	'http://www.thumbhell.com/st/niches/blondes.shtml',
	'http://www.thumbhell.com/st/niches/blowjobs.shtml',
	'http://www.thumbhell.com/st/niches/brunettes.shtml',
	'http://www.thumbhell.com/st/niches/extreme.shtml',
	'http://www.thumbhell.com/st/niches/cumshots.shtml',
	'http://www.thumbhell.com/st/niches/dad_and_girls.shtml',
	'http://www.thumbhell.com/st/niches/black.shtml',
	'http://www.thumbhell.com/st/niches/fatties.shtml',
	'http://www.thumbhell.com/st/niches/fetish.shtml',
	'http://www.thumbhell.com/st/niches/feet.shtml',
	'http://www.thumbhell.com/st/niches/groupsex.shtml',
	'http://www.thumbhell.com/st/niches/hairy.shtml',
	'http://www.thumbhell.com/st/niches/hugecocks.shtml',
	'http://www.thumbhell.com/st/niches/straight.shtml',
	'http://www.thumbhell.com/st/niches/hentai.shtml',
	'http://www.thumbhell.com/st/niches/interracial.shtml',
	'http://www.thumbhell.com/st/niches/latin.shtml',
	'http://www.thumbhell.com/st/niches/lesbian.shtml',
	'http://www.thumbhell.com/st/niches/masturbation.shtml',
	'http://www.thumbhell.com/st/niches/mature.shtml',
	'http://www.thumbhell.com/st/niches/pantyhose.shtml',
	'http://www.thumbhell.com/st/niches/mature_and_young.shtml',
	'http://www.thumbhell.com/st/niches/outdoor.shtml',
	'http://www.thumbhell.com/st/niches/pissing.shtml',
	'http://www.thumbhell.com/st/niches/pornstars.shtml',
	'http://www.thumbhell.com/st/niches/pregnant.shtml',
	'http://www.thumbhell.com/st/niches/redheads.shtml',
	'http://www.thumbhell.com/st/niches/office.shtml',
	'http://www.thumbhell.com/st/niches/sexparty.shtml',
	'http://www.thumbhell.com/st/niches/teachers.shtml',
	'http://www.thumbhell.com/st/niches/shemales.shtml',
	'http://www.thumbhell.com/st/niches/tinytits.shtml',
	'http://www.thumbhell.com/st/niches/spanking.shtml',
	'http://www.thumbhell.com/st/niches/squirting.shtml',
	'http://www.thumbhell.com/st/niches/swingers.shtml',
	'http://www.thumbhell.com/st/niches/teenies.shtml',
	'http://www.thumbhell.com/st/niches/uniform.shtml',
	'http://www.thumbhell.com/st/niches/vintage.shtml',
	'http://www.thumbhell.com/st/niches/voyeur.shtml'
	);

document.onmouseover = onmouseover_handler;
document.onmouseout = onmouseout_handler;

function onmouseover_handler()
{
	if (document.links)
	{
		var srcElement = event.srcElement;
		
		if (srcElement.tagName == "IMG")
		{
			srcElement = srcElement.parentElement
		}
   
		if (srcElement.tagName == "A")
		{
			if (srcElement.id == "noparse")
				return true;

			if (srcElement.id != "no")
			{
				if (parseInt(srcElement.id) < 100)
				{
					status = cjurls[parseInt(srcElement.id)]
			    }
				else
				{
					re.exec(srcElement.href); 
					status = RegExp.$1;
				} 
			}
			else
			{
				status = srcElement.href
			}
	 	}
	}
	return true;
}

function onmouseout_handler()
{
	if (document.links)
	{
    	status = '';  
	}
	return true;
}
