// JavaScript Document

function playSCHeader() {
		var objs = document.getElementById('sc_header_nav').childNodes;
		
		for (i = 0; i < objs.length; i++) {
			if (objs.item(i).nodeName == "UL") {
				objs = objs.item(i).childNodes;
				break;
			}
		}
	
		for (i = 0; i < objs.length;  i++) {
			
			if(objs.item(i)) {
				if(objs.item(i).nodeType == 1) {
					objs.item(i).onmouseover = function() {
						if(this.getAttribute('className') != null) {
							if(this.getAttribute('className') != 'selected') {this.setAttribute('className', 'over');}
						} else {
							if(this.getAttribute('class') != 'selected') {this.setAttribute('class', 'over');}
						}
					}
					objs.item(i).onmouseout = function() {
						if(this.getAttribute('className') != null) {
							if(this.getAttribute('className') == 'over') {this.setAttribute('className', '');}	
						} else {
							if(this.getAttribute('class') == 'over') {this.setAttribute('class', '');}
						}
					}
				}
				
			}
		}
	}