function tabSwitch(toTab)
{
	var noticesListing = document.getElementById("noticesListing");
	var moreNotices = document.getElementById("moreNotices");
	var newsListing = document.getElementById("newsListing");
	var moreNews = document.getElementById("moreNews");
	var borrowListing = document.getElementById("borrowListing");
	var investListing = document.getElementById("investListing")
	var newsSwitch = document.getElementById("newsSwitch");
	var noticesSwitch = document.getElementById("noticesSwitch");
	var borrowSwitch = document.getElementById("borrowSwitch");
	var investSwitch = document.getElementById("investSwitch");

	if (toTab == "notices")
	{
		noticesListing.style.display = "block";
		moreNotices.style.display = "block";
		newsListing.style.display = "none";
		moreNews.style.display = "none";
		noticesSwitch.className = "selected";
		newsSwitch.className = "";
	}
	else if (toTab == "news")
	{
		noticesListing.style.display = "none";
		moreNotices.style.display = "none";
		newsListing.style.display = "block";
		moreNews.style.display = "block";
		noticesSwitch.className = "";
		newsSwitch.className = "selected";
	}
	else if (toTab == "borrow")
	{
		borrowSwitch.className = "selected";
		investSwitch.className = "";
		borrowListing.style.display = "block";
		investListing.style.display = "none";
	}
	else if (toTab == "invest")
	{
		borrowSwitch.className = "";
		investSwitch.className = "selected";
		borrowListing.style.display = "none";
		investListing.style.display = "block";
	}
	
}

function Init()
{
	if(typeof sIFR == "function")
	{
		//var swfSource = "http://www.directmoney.com.au/flash/Futura-Medium.swf";
		var swfSource = "/flash/Futura-Medium.swf";
		sIFR.replaceElement(named({sSelector:"span.rateAmount", sFlashSrc:swfSource, sColor:"#ffffff", sLinkColor:"#ffffff", sHoverColor:"#ffffff", sWmode:"transparent", nPaddingTop:0, nPaddingBottom:0, sFlashVars:"textalign=right&offsetTop=0"}));
	};
}


window.onload = Init;