/*

Attached the Hover event to all objects with the class flyoutMaster

*/

// Store all tags in an array
var allHTMLTags=document.getElementsByTagName("*");

// Iterate through the array
for (i=0; i<allHTMLTags.length; i++) 
{
	// If the tagname at the current index has the same classname
	if (allHTMLTags[i].className=="flyoutMaster") 
	{
		// Attach a mouse OVER effect to the class
		allHTMLTags[i].onmouseover = function()
		{
			// Add IEOver classname to the class string (thus giving it two classes: class="XX IEOver")
			this.className = 'flyoutMaster';
			this.className += ' IEOver';
		}
		
		
		// Attach a mouse OUT effect to the class
		allHTMLTags[i].onmouseout = function()
		{
			// Remove the IEOver portion from the link
			this.className = 'flyoutMaster';
		}
		
	}
}
