// JavaScript Document


function adjustLeftRightColumns()
{
  //find the height of the internal page
  var the_height=document.getElementById('contentWrapper').offsetHeight;
      if(the_height<323){
	  the_height=323;
  }
  	document.getElementById('leftColumn').style.height=the_height+"px";
	document.getElementById('contentWrapper').style.height=the_height-66+"px";
	document.getElementById('leftColumn').style.width="100%";
	document.getElementById('rightColumn').style.width="100%";
	var the_height1=document.getElementById('leftWrapper').offsetHeight;
	document.getElementById('rightWrapper').style.height=the_height1+"px";
	document.getElementById('rightColumn').style.height=the_height1+170-187+"px";
	
	
	
}

function showForInvestorsNav(){
	
	resetNavs();
	document.getElementById('forNavBottomFill').style.backgroundColor ="#EDA21C";
	document.getElementById('forInvestorsTab').style.backgroundColor ="#EDA21C";
	document.getElementById('forInvestorsTopTab').style.backgroundColor ="#EDA21C";
	document.getElementById('subNav').style.display ="block";
	document.getElementById('navForInvestorsSub').style.display ="block";
	
}
function showForDevelopersNav(){
	
	resetNavs();
	document.getElementById('forNavBottomFill').style.backgroundColor ="#EDA21C";
	document.getElementById('forDevelopersTab').style.backgroundColor ="#EDA21C";
	document.getElementById('forDevelopersTopTab').style.backgroundColor ="#EDA21C";
	document.getElementById('subNav').style.display ="block";
	document.getElementById('navForDevelopersSub').style.display ="block";
}
function showAssetMangNav(){
	
	resetNavs();
	document.getElementById('assetMangTab').style.backgroundColor ="#EDA21C";
	document.getElementById('assetMangTopTab').style.backgroundColor ="#EDA21C";
	document.getElementById('subNav').style.display ="block";
	document.getElementById('navAssetMangSub').style.display ="block";
}
function showAttorneysNav(){
	
	resetNavs();
	document.getElementById('attorneysTab').style.backgroundColor ="#EDA21C";
	document.getElementById('attorneysTopTab').style.backgroundColor ="#EDA21C";
	document.getElementById('subNav').style.display ="block";
	document.getElementById('navAttorneysSub').style.display ="block";
}

function showAccountantsNav(){
	
	resetNavs();
	document.getElementById('accountantsTab').style.backgroundColor ="#EDA21C";
	document.getElementById('accountantsTopTab').style.backgroundColor ="#EDA21C";
		document.getElementById('subNav').style.display ="block";
	document.getElementById('navAccountantsSub').style.display ="block";
}

function resetNavs(){
	document.getElementById('forNavBottomFill').style.backgroundColor ="transparent";
	document.getElementById('forInvestorsTab').style.backgroundColor ="transparent";
	document.getElementById('forInvestorsTopTab').style.backgroundColor ="#ffffff";
	
	document.getElementById('forDevelopersTab').style.backgroundColor ="transparent";
	document.getElementById('forDevelopersTopTab').style.backgroundColor ="#ffffff";
	
	document.getElementById('assetMangTab').style.backgroundColor ="transparent";
	document.getElementById('assetMangTopTab').style.backgroundColor ="#ffffff";
	
	document.getElementById('attorneysTab').style.backgroundColor ="transparent";
	document.getElementById('attorneysTopTab').style.backgroundColor ="#ffffff";
	
	document.getElementById('accountantsTab').style.backgroundColor ="transparent";
	document.getElementById('accountantsTopTab').style.backgroundColor ="#ffffff";
	
	document.getElementById('subNav').style.display ="none";
	document.getElementById('navForInvestorsSub').style.display ="none";
	document.getElementById('navForDevelopersSub').style.display ="none";
	document.getElementById('navAssetMangSub').style.display ="none";
	document.getElementById('navAttorneysSub').style.display ="none";
	document.getElementById('navAccountantsSub').style.display ="none";
}




			
function showHomePageFlash(){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"'); 
document.write('width="434" height="309"><param name="movie" value="flash/widgetNav.swf" />');
document.write('<param name="quality" value="high" /><embed src="flash/widgetNav.swf" quality="high" ');
document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"'); 
document.write('width="434" height="309"></embed></object>');
			   
}