$(document).ready(function()
{

	$("a").each(function()
	{
		if (this.getAttribute("rel") == "external")
			this.target = "_blank";
		
	});
		
	$("img.pover").mouseover(function()
	{

		var orgsrc = this.src;
		var strimg = orgsrc.split(".gif");
		this.src = strimg[0] + "_over.gif";
	});
	
	$("img.pover").mouseout(function()
	{
		orgsrc = this.src;
		this.src = orgsrc.replace(/_over/, "");
	});
	
	$("a.tc").each(function(i)
        {
                var s = this.id.split("_");
                if (s[1] != "0")
                        $("#"+this.id).css("color", "#"+s[1]);
                if (s[2] != "0")
                        $("#"+this.id).css("font-weight", "bold");
        });
});


	