Your IP : 172.28.240.42


Current Path : /var/www/html/clients/kampol.e-nk.ru/OLD/components/com_easyfaq/
Upload File :
Current File : /var/www/html/clients/kampol.e-nk.ru/OLD/components/com_easyfaq/easyfaq.js

/**
* @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(); 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)';
    xajax_getFaqItem(id);
  }
}