// JavaScript Document
/**
* @package Easyfaq
* @copyright (C) 2006 Joomla-addons.org
* @author 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 Creative Commons - Attribution-NoDerivs 2.5 
* license as published by the Creative Commons Organisation
* http://creativecommons.org/licenses/by-nd/2.5/.
*
* 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(); 

function togglerel(id){
  var li = document.getElementById('li' + id);
  var div = document.getElementById('rel' + id);
  
  if(div.style.display == 'block'){
    div.style.display = 'none';
  } else {
    div.style.display = 'block'
  }
}

function togglerelWithAjax(id){
  var li = document.getElementById('li' + id);
  var div = document.getElementById('rel' + id);
  
  if(div.style.display == 'block'){
    div.style.display = 'none';
    div.innerHTML = '';
  } else {
    div.style.display = 'block'
    ef_getrelItem(id);
  }
}

