/* Javascript Design by Jeson.Cantona @ DC Shanghai */
/* 2007-07-03 */

// Toppage delete the link attribute from CS Logo  
window.onload = function() {
	var bd = document.getElementsByTagName("body");
	
	if(bd!=null && bd[0].className == "gatewayContents topPage") {
		var csd = document.getElementById("siteTopNavi")
		if(csd.childNodes[0].tagName == "A") {
			csd.childNodes[0].removeAttribute("href");
		}
	}
}
