// JavaScript Document
function SwapOut(id, imageURL)
{
	var img = document.getElementById(id)
	img.src = "images/" + imageURL

	return true;
}

function showText(index)
{
	var inside = Array('AxisFM was built from the ground up by Doug Christensen, who has been broadly recognized as a thought leader in the facility management world.  Doug has received several awards as a result of his TCO/Lifecycle-centric approach.<br /><a href="" class="small_link_fm">&raquo; READ MORE</a>',
						   '2AxisFM was built from the ground up by Doug Christensen, who has been broadly recognized as a thought leader in the facility management world.  Doug has received several awards as a result of his TCO/Lifecycle-centric approach.<br /><a href="" class="small_link_fm">&raquo; READ MORE</a>',
						   '3AxisFM was built from the ground up by Doug Christensen, who has been broadly recognized as a thought leader in the facility management world.  Doug has received several awards as a result of his TCO/Lifecycle-centric approach.<br /><a href="" class="small_link_fm">&raquo; READ MORE</a>',
						   '4AxisFM was built from the ground up by Doug Christensen, who has been broadly recognized as a thought leader in the facility management world.  Doug has received several awards as a result of his TCO/Lifecycle-centric approach.<br /><a href="" class="small_link_fm">&raquo; READ MORE</a>',
						   '5AxisFM was built from the ground up by Doug Christensen, who has been broadly recognized as a thought leader in the facility management world.  Doug has received several awards as a result of his TCO/Lifecycle-centric approach.<br /><a href="" class="small_link_fm">&raquo; READ MORE</a>',
						   '6AxisFM was built from the ground up by Doug Christensen, who has been broadly recognized as a thought leader in the facility management world.  Doug has received several awards as a result of his TCO/Lifecycle-centric approach.<br /><a href="" class="small_link_fm">&raquo; READ MORE</a>',
						   '7AxisFM was built from the ground up by Doug Christensen, who has been broadly recognized as a thought leader in the facility management world.  Doug has received several awards as a result of his TCO/Lifecycle-centric approach.<br /><a href="" class="small_link_fm">&raquo; READ MORE</a>'			
						   )
	
	var textDiv = document.getElementById("callout_rollover");
	textDiv.innerHTML = inside[index];
	//textDiv.style.paddingTop = index*6 + "px";
	
	document.getElementById("textTable").style.height="auto";
	// match box models
	gh = document.getElementById("textTable").offsetHeight/7;
	//alert(gh);
	off = gh*index
	offset = "0px " + off + "px"
	document.getElementById("textTableContainer").style.backgroundPosition=offset;
	//alert(id + "_column: Changing to " + offset);
}