//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function shit(link)
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
	var yo = link.getAttribute('href');

	alert(yo);
	
	//moo.toggle();

	// Return false so it doesn't follow link
	return false;
}

///////////////////////////////////////////////////////////////////////////////

window.onload = function() 
{
	// Make sure that the browser can handle the methods
	if (!document.getElementById || !document.getElementsByTagName) return;

	// Set the function of the nav links
	//set_link_func('nav_main', 'shit');
	
	// Set up the sIFR
	if (typeof sIFR == "function")
	{
		sIFR();
		sIFR.replaceElement("h3", named({sFlashSrc: "./tradegothic_cond.swf", sColor: "#969379", sBgColor: "#ddddcc"}));
	};
}


