/**
* @package Easyfaq
* @copyright (C) 2006 Joomla-addons.org
* @author  Adam van Dongen
* @version $Id: easyfaq.js 7 2007-06-16 14:21:40Z websmurf $
* 
* --------------------------------------------------------------------------------
* All rights reserved. Easy FAQ Component for Joomla!
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Joomla-addons Free Software License 
* See LICENSE.php for more information.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
* --------------------------------------------------------------------------------
**/

hoverImg = new Image(); hoverImg.src='components/com_easyfaq/icons/1downarrow.png';

function toggleFaq(id){
  var li = document.getElementById('li' + id);
  var div = document.getElementById('faq' + id);
  
  if(div.style.display == 'block'){
    div.style.display = 'none';
    li.style.backgroundImage = 'url(components/com_easyfaq/icons/1rightarrow.png)';
  } else {
    div.style.display = 'block'
    li.style.backgroundImage = 'url(components/com_easyfaq/icons/1downarrow.png)';
  }
}

function toggleFaqWithAjax(id){
  var li = document.getElementById('li' + id);
  var div = document.getElementById('faq' + id);
  
  if(div.style.display == 'block'){
    div.style.display = 'none';
    div.innerHTML = '';
    li.style.backgroundImage = 'url(components/com_easyfaq/icons/1rightarrow.png)';
  } else {
    div.style.display = 'block'
    li.style.backgroundImage = 'url(components/com_easyfaq/icons/1downarrow.png)';
    ef_getFaqItem(id);
  }
}

