<!--
//Global Variable for Google Analytics Code
var domain = null;

function swapContent(myid, objCaller) 
	{
 	var numSections = 15; // this is the # of options 
 	// hide all sections
 	for (var j = 1; j <= numSections; j++) 
		{
   			if(document.getElementById('optionContent'+j))
				{		
   			document.getElementById('optionContent'+j).style.display='none'; 
				}
	  }
 	// reveal the section we want...
 	document.getElementById('optionContent'+myid).style.display='block';

    //Start Code for Tracking Tab Clicks in Google Analytics
    if(domain == null)
    {
        domain = window.location.pathname.split('?')[0];
    }
    var newpath =  window.location.pathname.split('?')[0] + '?section=' + myid;
    if(newpath != domain)
    {
        domain = newpath;
        pageTracker._trackPageview(newpath);
    }
    //End Code for Track Tab Clicks in Google Analytics
    

	// Set the styles for the navigation
	//This is the list item that is current selected
	var thisListItem = objCaller.parentNode;
	//This is the collection of list items in the list
	var thisList = thisListItem.parentNode.getElementsByTagName("li");
	var i;

	for(i=0; i< thisList.length; i++)
		{
		//If this list item is the one we are current hovering over set the correct CSS Class
		if(thisList[i] == thisListItem)
			{
			var linkElements = thisList[i].childNodes;
			var j;
			for(j=0; j < linkElements.length; j++)
				{
				if(linkElements[j].className != null)
					{
					linkElements[j].className = "youarehere";
					}
				}
			}
		//Else we will want to clear the CSS Class
		else
			{
			var linkElements = thisList[i].childNodes;
			var j;
			for(j=0; j < linkElements.length; j++)
				{
				if(linkElements[j].className != null)
					{
					linkElements[j].className = "";
					}
				}	
			}
		}

	}

-->