function show_hide(total, no)
{
	for(var j=0; j<total; j++)
	{
		if(j!=no)
		{
			i="f_ans_" + j;
			g="faq_image_" + j;
			hide_content(i);
			putImage(g,"images/faq_heading.jpg");
		}
	}
	i="f_ans_" + no;
	g="faq_image_" + no;
	if(content_status(i)=="none")
	{
		show_content(i);
		putImage(g,"images/faq_heading_alt.jpg");
		
	}
	else
	{
		hide_content(i);
		putImage(g,"images/faq_heading.jpg");
	}
}