/* *****************************************
//  WebTank javascript File
//  Title: fsmenu.js
//  File updated: 2008-05-08 17:48:01
// 
//  Do NOT manually edit this generated file
// **************************************** */


fsmenu = function() {
	
	if( document.all&&document.getElementById ) {
		
		root = document.getElementById( 'ul-1-0_1' );

		for ( x = 0; x < root.firstChild.childNodes.length; x++ ) {
			
			node = root.firstChild.childNodes[x];
			
			if( node.nodeName == 'LI' ) {
				
				node.onmouseover=function() {
				
					this.className += ' over';
					
				}
				node.onmouseout = function() {
				
					this.className = this.className.replace( " over", "" );
					
				}
				
			}
			
			for ( y = 0; y < node.childNodes.length; y++ ) {
				
				if( node.childNodes[y].nodeName == 'UL' ) {
				
					if( node.childNodes[y].hasChildNodes() ) {
					
						for ( z = 0; z < node.childNodes[y].childNodes.length; z++ ) {
						
							if( node.childNodes[y].childNodes[z].nodeName == 'LI' ) {
				
								node.childNodes[y].childNodes[z].onmouseover=function() {
								
									this.className += ' over';
									
								}
								node.childNodes[y].childNodes[z].onmouseout = function() {
								
									this.className = this.className.replace( " over", "" );
									
								}
								
							}
						
						}
					
					}
				
				}
				
			}

		}
		
	}
}

version = 0;

if( navigator.appVersion.indexOf( "MSIE" ) != -1 ) {

	temp = navigator.appVersion.split( "MSIE" );
	version=parseFloat( temp[1] );
	
}

if ( version > 4 && version < 7 ) {

	if( window.attachEvent ) {
	
		window.attachEvent( "onload", fsmenu )
		
	} else {
	
		window.onload = fsmenu;
		
	}
	
}
