d=0
if (document.styleSheets[1].cssRules) r=document.styleSheets[1].cssRules
else if (document.styleSheets[1].rules) r=document.styleSheets[1].rules
r[1].style.display='block'
r[2].style.cursor='pointer'
r[3].style.display='none'
s=document.styleSheets[1]
if (document.styleSheets[1].cssRules) {
s.insertRule('dt {border-radius: 11px; -moz-border-radius: 11px; -khtml-border-radius: 11px; -webkit-border-radius: 11px}',4)
s.insertRule('dt:hover {background: #fdfdcc url(bulletfaq.png) no-repeat 3px 3px !important}',5)
} else if (document.styleSheets[1].rules) {
s.addRule('dt:hover', 'background: #fdfdcc url(bulletfaq.png) no-repeat 3px 3px !important}')
}
function a() {
r[1].style.display='none'
r[2].style.cursor='default'
r[3].style.display='block'
if (document.styleSheets[1].cssRules) {
s.deleteRule(5)
s.deleteRule(4)
s.insertRule('dt {background: #fdfdcc url(bullet.png) no-repeat 4px 3px !important}',4)
s.insertRule('dd {background: #ffffe9 !important}',5)
} else if (document.styleSheets[1].rules) {
s.removeRule(r.length-1)
s.addRule('dt', 'background: #fdfdcc url(bullet.png) no-repeat 4px 3px !important')
s.addRule('dd', 'background: #ffffe9 !important')
}
d=1
}
function o(dt) {
if (d==0) {
var display, dd=dt
do {dd=dd.nextSibling} while (dd.tagName!='DD')
dt.style.borderBottomLeftRadius=!dd.style.display? '0':''
dt.style.borderBottomRightRadius=!dd.style.display? '0':''
dt.style.MozBorderRadiusBottomleft=!dd.style.display? '0':''
dt.style.MozBorderRadiusBottomright=!dd.style.display? '0':''
dt.style.KhtmlBorderBottomLeftRadius=!dd.style.display? '0':''
dt.style.KhtmlBorderBottomRightRadius=!dd.style.display? '0':''
dt.style.WebkitBorderBottomLeftRadius=!dd.style.display? '0':''
dt.style.WebkitBorderBottomRightRadius=!dd.style.display? '0':''
dt.style.background=!dd.style.display? '#fdfdcc url(bulletfaq.png) no-repeat 3px 3px':'#fdfdcc url(bullet.png) no-repeat 4px 3px'
dd.style.background=!dd.style.display? '#ffffe9 url(bullet.png) no-repeat 4px 3px':''
dd.style.display=!dd.style.display? 'block':''
}
}
document.getElementById('expand').onclick=function(){a()}
for (i=0;i<document.getElementsByTagName('dt').length;i++) document.getElementsByTagName('dt')[i].onclick=function(){o(this)}