		<!--
			if (document.images)
			{
			  pic1= new Image; 
			  pic1.src="http://www.imsready.com/images/tab_NavMenu1a.jpg"; 
			  pic2= new Image; 
			  pic2.src="http://www.imsready.com/images/tab_NavMenu2a.jpg";
			  pic3= new Image; 
			  pic3.src="http://www.imsready.com/images/tab_NavMenu3a.jpg";
			  pic4= new Image; 
			  pic4.src="http://www.imsready.com/images/tab_NavMenu4a.jpg"; 
			  pic5= new Image; 
			  pic5.src="http://www.imsready.com/images/tab_NavMenu5a.jpg";
			  pic6= new Image; 
			  pic6.src="http://www.imsready.com/images/tab_NavMenu6a.jpg";
			  pic7= new Image; 
			  pic7.src="http://www.imsready.com/images/tab_NavMenu7a.jpg";		  
			}

			var frameCheck = (top == self);
			if (!frameCheck) top.location.href = 'http://www.imsready.com';
			
			var objNavMenu = null;
			var objDropMenu = null;
			var objMenuAll = null;
			var objTopMenu = null;
			var objDropMenu2 = null;
			var numDropMenu = 7;

			function initDropMenu () {
				for (i=1; i<=numDropMenu; i++) {
					menuName = 'dropMenu' + i;
					navName = 'NavMenu' + i;
					objDropMenu = document.getElementById(menuName);
					objNavMenu = document.getElementById(navName);
					objDropMenu.style.visibility = 'hidden';
					objNavMenu.onmouseover =  menuOver;
				}
				objNavMenu = null;
				menuSection();
				document.getElementById("menuAll").onmouseout = menuReset;
				return;
			}

			function menuSection() {
				if (section != 0) {
					objTopMenuId = 'NavMenu' + section;
					objTopMenu = document.getElementById(objTopMenuId);
					if (root == 1) {
						objTopMenu.style.backgroundImage = "url(http://www.imsready.com/images/" + 'tab_NavMenu' + section + 'a.jpg' + ")";						
					}
					if (root == 2) {
						objTopMenu.style.backgroundImage = "url(http://www.imsready.com/images/" + 'tab_NavMenu' + section + 'a.jpg' + ")";						
					}					
					else {
						objTopMenu.style.backgroundImage = "url(http://www.imsready.com/images/" + 'tab_NavMenu' + section + 'a.jpg' + ")";
					}
					objDropMenuId = 'dropMenu' + section;
					objDropMenu2 = document.getElementById(objDropMenuId);
					objDropMenu2.style.visibility = 'visible';
				}
				return;
			}
			
			function contains(a, b) {
			  if ((a != null) && (b != null)){
				  while (b.parentNode)
					if ((b = b.parentNode) == a)
					  return true;
				  return false;
			  }
			}

			function menuReset(e) {
			  var current, related;
			
			  if (window.event) {
				current = this;
				related = window.event.toElement;
			  }
			  else {
				current = e.currentTarget;
				related = e.relatedTarget;
			  }			
			
			  if ((current != related) && (!contains(current, related))) {
				menuOff();
				menuSection();
			  }
			}
			
			function menuOff(e) {
				for (i=1; i<=numDropMenu; i++) {
					menuName = 'dropMenu' + i;
					navName = 'NavMenu' + i;
					objDropMenu = document.getElementById(menuName);
					objNavMenu = document.getElementById(navName);
					objDropMenu.style.visibility = 'hidden';
					objNavMenu.style.backgroundImage = "url('')";
				}
				objNavMenu = null;	
				return;	
			}
			
			function menuOver(e) {
				menuOff();
				overObjNavMenu = document.getElementById(this.id);
				var objectID = overObjNavMenu.id;
				var bgImage = 'tab_' + objectID + 'a.jpg';
				if (overObjNavMenu != objNavMenu) {
					if (root == 1) {					
						overObjNavMenu.style.backgroundImage = "url(http://www.imsready.com/images/" + bgImage + ")";
					}
					if (root == 2) {					
						overObjNavMenu.style.backgroundImage = "url(http://www.imsready.com/images/" + bgImage + ")";
					}					
					else {
						overObjNavMenu.style.backgroundImage = "url(http://www.imsready.com/images/" + bgImage + ")";	
					}
				}
				
				menuName = 'drop' + this.id.substring(3,this.id.length);
				objDropMenu = document.getElementById(menuName);

				if (objDropMenu) {
					objDropMenu.style.visibility = 'visible';
				}
			}
		// -->
