
  // FAQ HIDE AND SHOW //
function faq() {
 if (document.getElementById('faq')){
  var faqRows = document.getElementById('faq').getElementsByTagName('li');
  for (var i = 0; i < faqRows.length; i++) {
   faqRows[i].onclick=function(){
    var theDiv = this.getElementsByTagName('div');
    if(theDiv[0].style.display == 'block'){
     theDiv[0].style.display = 'none';
     this.style.paddingBottom = '1px';
    }
    else{
     theDiv[0].style.display = 'block';
     this.style.paddingBottom = '0';
    }
   }
   faqRows[i].onselectstart = function(){
    return false;
   }
   faqRows[i].onmousedown = function(){
    return false;
   }
  }
 }
}

$(window).bind('load', faq);
