function onPageLoad(){
	return false;
	tagLine = document.getElementById('rtwtag_tagline');
	tagLine.style.display = 'block';
	tagLine.style.margin = '80px 0px 0px 0px';
	cLocation = String(window.location);
	mLocation = cLocation.split('#');
	if(mLocation.length > 1 && document.getElementById('rtw_'+mLocation[1])){
		switchContent(mLocation[1]);
	}
};
function switchContent(content){
	return false;
	clearAllContent();
	if(content=='#'){
		document.getElementById('rtwtag_tagline').style.display = 'block';
	}else{
		document.getElementById('rtwtag_tagline').style.display = 'none';
		document.getElementById('rtwtag_'+content).style.display = 'block';
		document.getElementById('rtw_'+content).style.display = 'block';
		document.getElementById('text-'+content).style.color='#000000';
		document.getElementById('text-'+content).style.fontWeight='normal';
	}
};window.onload=onPageLoad;
function clearAllContent(){
	return false;
	contentDiv = document.getElementsByClassName('rtw_content');
	taglineDiv = document.getElementsByClassName('rtw_tagline');
	for(i=0; i<contentDiv.length; i++){
		contentDiv[i].style.display='none';	
		taglineDiv[i].style.display='none';	
	}
	linkA = document.getElementsByClassName('rtw_naviLink');
	for(i=0; i<linkA.length; i++){
		linkA[i].style.color='#999999';
		linkA[i].style.fontWeight='normal';	
	}
};
