// JavaScript Document


function ExpandText(article)
{
	var fromHost = location.host;
	target = "content" + article;
	tag = "link" + article;
	var theSpan = $(tag).immediateDescendants();

	if ($(theSpan).inspect() == "[<span class=\"more\">]")
	{
	    //action = "http://www.fleetsoft.com/ajax/read_more/" + article + "_full.aspx";//use for live site
	    action = "http://www.fleetsoft.com/ajax/read_more/" + article + "_full.aspx";//use for testing

		new Ajax.Updater (target, action);
		//$(theSpan[0]).update('<img src=\"../images/readless.gif\" alt=\"hide...\" border=0 />');
		$(theSpan[0]).update('hide ^');
		$(theSpan[0]).innerHTML;
		$(theSpan[0]).removeClassName('more');
		$(theSpan[0]).addClassName('collapse');
	}
	else
	{
	    //action = "http://www.fleetsoft.com/ajax/read_more/" + article + "_part.aspx";//use for live site
	    action = "http://www.fleetsoft.com/ajax/read_more/" + article + "_part.aspx"; //use for testing
	    new Ajax.Updater(target, action);
		//$(theSpan[0]).update('<img src=\"../images/readmore1.gif\" alt=\"more...\" border=0 />');
		$(theSpan[0]).update('Read More...');
		$(theSpan[0]).innerHTML;
		$(theSpan[0]).removeClassName('collapse');
		$(theSpan[0]).addClassName('more');
	}
}

function ExpandFAQ(article)
{
	var fromHost = location.host;
	target = "content" + article;
	tag = "link" + article;
	var theSpan = $(tag).immediateDescendants();

	if ($(theSpan).inspect() == "[<span class=\"more\">]")
	{
	    action = "http://www.fleetsoft.com/ajax/read_more/" + article + "_full.aspx";
		new Ajax.Updater (target, action); 
		$(theSpan[0]).update('<img src="images/FAQ_ArrowDown.png" height="11" width="11"/>');
		$(theSpan[0]).innerHTML;
		$(theSpan[0]).removeClassName('more');
		$(theSpan[0]).addClassName('collapse');
	}
	else
	{
	    action = "http://www.fleetsoft.com/ajax/read_more/" + article + "_part.aspx";
		new Ajax.Updater (target, action);
		$(theSpan[0]).update('<img src="images/FAQ_ArrowRight.png" height="11" width="11"/>');
		$(theSpan[0]).innerHTML;
		$(theSpan[0]).removeClassName('collapse');
		$(theSpan[0]).addClassName('more');
	}
}
