function openIt(faq) {
showIt = document.all(faq);
if (showIt.style.display == "none") {
showIt.style.display = ""
} else {
showIt.style.display = ""
}
}

function closeIt(faq) {
showIt = document.all(faq);
if (showIt.style.display == "none") {
showIt.style.display = "none"
} else {
showIt.style.display = "none"
}
}


function over(obj) {
obj.style.backgroundColor='#cfcfcf';
}
function out(obj) {
obj.style.backgroundColor='';
}
