//Frame-Busting Script
if (self.parent.frames.length != 0)
	{self.parent.location=document.location}
         	
function showTTStitle()
{

   document.write("<OBJECT title='Technical Training Solutions, LLC'");
   document.write(" classid='clsid:D27CDB6E-AE6D-11CF-96B8-444553540000'");
   document.write(" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0'");
   document.write(" border='0' width='720' height='48' VIEWASTEXT>");
   document.write("<PARAM name='movie' value='/images/TTS.swf' >");
   document.write("<PARAM name='quality' value='High' >");
   document.write("<PARAM name='wmode' value='transparent' >");
   document.write("<PARAM name='menu' value='false' >");
   document.write("<param name='loop' value='true' >");
   document.write("<EMBED src='/images/TTS.swf'");
   document.write(" pluginspage='http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash'");
   document.write(" type='application/x-shockwave-flash' name='flash2' width='720'");
   document.write(" height='48' quality='High' menu='false' wmode='transparent' />");
   document.write("</OBJECT>");
}

function showWordAnimation()
{

   document.write("<OBJECT title='Knowledge + Comprehension = Understanding'")
   document.write(" classid='clsid:D27CDB6E-AE6D-11CF-96B8-444553540000'")
   document.write(" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0'")
   document.write(" border='0' width='160' height='160' VIEWASTEXT>")
   document.write("<PARAM name='movie' value='/images/TTS-Knowledge.swf' />")
   document.write("<PARAM name='quality' value='High' />")
   document.write("<PARAM name='wmode' value='transparent' />")
   document.write("<PARAM name='menu' value='false' />")
   document.write("<param name='loop' value='true' />")
   document.write("<EMBED src='/images/TTS-Knowledge.swf'")
   document.write(" pluginspage='http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash'")
   document.write(" type='application/x-shockwave-flash' name='flash2' width='160'")
   document.write(" height='160' quality='High' menu='false' wmode='transparent' />")
   document.write("</OBJECT>")
}

var theBGColor, theTextColor, fc
function colorOn(sender)
{
	//store original values for use later
	theTextColor=sender.style.color;
	theBGColor=sender.style.background;
	fc = sender.firstChild;
	
	//set new values
	sender.style.background="#ffffff";
	fc.style.color="#ff0000";
}

function colorOff(sender)
{
	//use stored values to return to previous look
	sender.style.background=theBGColor;
	fc.style.color=theTextColor;
}

