function runit(element) {
	$('tr#'+element+'').toggle();	
	var img = 'img'+element+'';
	var theImg = document.getElementById(img).src;
	var x = theImg.split("/");
	var t = x.length-1;
	var y = x[t];


if(y=='faqdownarrow.gif')
{
document.images[img].src='../images/faquparrow.gif'
}
if(y=='faquparrow.gif')
{
document.images[img].src='../images/faqdownarrow.gif'
}
}

