// JavaScript Document
function topbanner(bnitem)
{
	str = "";
	switch(bnitem)
	{
		case 1:
			str+='<dt><a href="information1.html" class="rollover">左京区</a></dt>';
		break;
		case 2:
		str+='<dt><a href="information2.html" class="rollover">北区</a></dt>';
		break;
		case 3:
		str+='<dt><a href="information4.html" class="rollover">上京区</a></dt>';
		break;
		case 4:
		str+='<dt><a href="information5.html" class="rollover">中京区</a></dt>';
		break;
		case 5:
		str+='<dt><a href="information3.html" class="rollover">下京区</a></dt>';
		break;
		case 6:
		str+='<dt><a href="student.html#inquiry" class="rollover">会社概要・お問い合わせ</a></dt>';
		break;
	}
	document.writeln(str);
}