// SCRIPT FOR MENU ITEMS
function startList() {
	if (document.all&&document.getElementById) {
		searchRoot = document.getElementById('search_form');
		if (searchRoot) { 
    		for (i=0; i<searchRoot.childNodes.length; i++) {
    			node = searchRoot.childNodes[i];
    			if (node.nodeName=="INPUT") {
    				node.onmouseover=function() {
    					this.className+=" over";
    				}
    				node.onmouseout=function() {
    					this.className=this.className.replace(" over", "");
    				}
    			}
    		}
		}
		searchRoot = document.getElementById('login_form');
		if (searchRoot) {
    		for (i=0; i<searchRoot.childNodes.length; i++) {
    			node = searchRoot.childNodes[i];
    			if (node.nodeName=="INPUT") {
    				node.onmouseover=function() {
    					this.className+=" over";
    				}
    				node.onmouseout=function() {
    					this.className=this.className.replace(" over", "");
    				}
    			}
    		}
    	}
	}
}

window.onload=startList;

// FLASH EMBED WORK AROUND FOR INTERNET DESTROYER
// OBJECT NAME
function home_flash() {
    document.getElementById("flash").innerHTML = '<object type="application/x-shockwave-flash" data="/flash/ncs_filmstrip.swf?myWebserver=http://www.readingathome.com/" width="788" height="189"><param name="movie" value="/flash/ncs_filmstrip.swf?myWebserver=http://www.readingathome.com/" /><param name="quality" value="best" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="wmode" value="transparent" />';
}







