<!----------------------------------------
//=======================================================
//Style Seat
//=======================================================	
document.writeln('<STYLE TYPE="text/css"><!--');
if(navigator.appVersion.indexOf("Mac",0) != -1){
	//Mac IE&NN	
	document.writeln('.aaa {font-Size:9px; line-height:13px;}');	
	document.writeln('.bbb {font-Size:9px; line-height:13px;}');	
	document.writeln('.ccc {font-Size:12px; line-height:16px;}');	
}
else{
if (navigator.appName == "Netscape"){
	//Windows NN	
	document.writeln('.aaa {font-Size:8pt; line-height:9pt;}');
	document.writeln('.bbb {font-Size:9pt; line-height:13pt;}');
	document.writeln('.ccc {font-Size:9pt; line-height:13pt;}');	
}else{	
	//Windows IE
	document.writeln('.aaa {font-Size:10px; line-height:12px;}');
	document.writeln('.bbb {font-Size:10px; line-height:13px;}');	
	document.writeln('.ccc {font-Size:12px; line-height:16px;}');	
}
}

	document.writeln('A {color:#cccccc;text-decoration:underline;}');	
	document.writeln('A:hover {color:#CC3300;text-decoration:underline;}');	
	document.writeln('A:active {color:#CC3300;text-decoration:underline;}');	
	
document.writeln('//--></STYLE>');

//=======================================================
//RollOver
//=======================================================
//‰æ‘œ“ü‚ê‘Ö‚¦
function _in(nam,num) {
if(navigator.appVersion.charAt(0) >= "3") {
 	document.images[nam].src = img[num].src;
}
} 
//---------------------------------------->
