var myrules = {
	'#kathleenlink' : function(element){
		element.onclick = function(){
			openWin('/fp.aspx?st=699&e=expertdetails&site=us&expert=kathleen','Kathleen','width=604,height=356');
			return false;
		}
	},
	'#container' : function(element){
		if(typeof(window.ActiveXObject) == "function"){
			element.onmouseover = function(){
				document.getElementById('leftnav').style.zIndex=0;
			}
		}
	},
	'#leftnav' : function(element){
		if(typeof(window.ActiveXObject) == "function"){
			element.onmouseover = function(){
				this.style.zIndex=50;
			}
		}
	}
};

Behavior.register(myrules);