/**
 * Forum Home Module JS Files
 * @author Pathfinder Solutions India
 * @link http://www.pathfindersolutions.biz
 * @version 1.0
 * @package YAN - Marketplace
 * @subpackage interest
 */

/**
 * fnShowList function
 * @param 
 * @return hide and show forum list
 */
function fnShowList(strContentDivid)
{
	strImageId = strContentDivid+"_img";
	if(document.getElementById(strContentDivid).style.display == "none")
	{
		document.getElementById(strContentDivid).style.display = "block";
		document.getElementById(strImageId).src = "img/marketplace/arrows/arrow_down.jpg";
	}
	else
	{
		document.getElementById(strContentDivid).style.display = "none";
		document.getElementById(strImageId).src = "img/marketplace/arrows/arrow_right.jpg";
	}
}
