<!--
	var tabObj = new Array();
	var tabHeight = new Array();
	tabHeight["tab01"] = "0px";
	tabHeight["tab02"] = "-48px";
	tabHeight["tab03"] = "-96px";
	tabHeight["tab04"] = "-144px";
	function tab_click(obj){
		for(i=0;i<tabObj.length;i++) {
			if(obj.id == tabObj[i]){
				//obj.style.backgroundPosition = "0px 0px";
				document.getElementById(tabObj[i]+"_inner").style.display = "block";
			}
			else {
				//document.getElementById(tabObj[i]).style.backgroundPosition = "0px -48px";
				document.getElementById(tabObj[i]+"_inner").style.display = "none";
			}
		}
		document.getElementById("ranking_header").style.backgroundPosition = "0px "+tabHeight[obj.id]; 
	}
	function tab_preset(){
		var liObjects = document.getElementsByTagName("h4");
		for (i=0;i<liObjects.length;i++) {
			if(liObjects[i].className == "tab")
				tabObj.push(liObjects[i].id);
		}
		$("h4.tab").click(function(){
			tab_click(this);
		});
	}
	onloadObjects.push('tab_preset()');
//-->