function getLayStyleOj(layName){  
	if(document.getElementById)         //e5,e6,n6,n7,m1,o6,o7,s1用
		return document.getElementById(layName).style
	else if(document.all)               //e4用
		return document.all(layName).style
	else if(document.layers)            //n4用
		return document.layers[layName]
}
//--オブジェクトを変数へセットする
function setlayobjects(){
	c1 = getLayStyleOj('intro1')
	c2 = getLayStyleOj('intro2')
	c3 = getLayStyleOj('intro3')
	c4 = getLayStyleOj('intro4')
	c5 = getLayStyleOj('intro5')
	c6 = getLayStyleOj('intro6')
	c7 = getLayStyleOj('intro7')
	i1 = getLayStyleOj('ctgIMG1')
	i2 = getLayStyleOj('ctgIMG2')
	i3 = getLayStyleOj('ctgIMG3')
	i4 = getLayStyleOj('ctgIMG4')
	i5 = getLayStyleOj('ctgIMG5')
	i6 = getLayStyleOj('ctgIMG6')
	i7 = getLayStyleOj('ctgIMG7')
}
function SL(ob){ 
	ob.display='inline'; 
}
function HL(ob){ 
	ob.display='none'; 
}
function SI(ob){ 
	ob.display='inline'; 
}
function HI(ob){ 
	ob.display='none'; 
}

