﻿function selListForm(){
	var myPath = location.pathname;
	var myCategory = myPath.slice(-7);

	switch(myCategory){
		case "n1.html":// holdings
			document.listForm.serviceList.selectedIndex = 1;
			break;

		case "n2.html":// square enix(081001-)
			document.listForm.serviceList.selectedIndex = 2;
			break;

		case "30.html":// square enix(-080930)
			document.listForm.serviceList.selectedIndex = 3;
			break;

		case "n3.html":// taito
			document.listForm.serviceList.selectedIndex = 4;
			break;

		case "n4.html":// sg lab
			document.listForm.serviceList.selectedIndex = 5;
			break;

		case "n5.html":// stylewalker
			document.listForm.serviceList.selectedIndex = 6;
			break;

		case "n6.html":// smile-lab
			document.listForm.serviceList.selectedIndex = 7;
			break;

		case "n7.html":// community engine
			document.listForm.serviceList.selectedIndex = 8;
			break;

		case "n8.html":// sei
			document.listForm.serviceList.selectedIndex = 5;
			break;

		default:// all
			document.listForm.serviceList.selectedIndex = 0;
			break;
	}

	//alert(myPath.substr(myPath.lastIndexOf("/")+1));
}
