function setStartPage(obj, url) {
	var agent = navigator.userAgent;
	var ie = agent.indexOf("MSIE");
	var iever = parseInt(agent.substring(ie+5, ie+6));
	var os = agent.indexOf("Windows");
	// IE and ver.5.0 or higher
	if((ie > 0) && (iever >= 5) && (os > 0) && !window.opera){
		var StartPage = url;
		obj.style.behavior = "url('#default#homepage')";
		obj.setHomePage(StartPage);
	}else{
		alert("この機能はInternet Explorer ver.5.0以上でサポートされています。\nThis function supports only IE5.0 or higher.\n");
	}
}

function setClass(myid,myclass){
	if(document.all) document.all(myid).className=myclass;
	else if(document.getElementById)
	document.getElementById(myid).className=myclass;

}

window.onload=function(){
	Nifty("div#msearch ul","top transparent");
	Nifty("div.mlefttitle","top transparent");
	Nifty("ul.mcontentstabs a","transparent top");
}

