// Suppress tooltip display for links
function resizeNavText() {
	var left = document.getElementById('left');
	var nav = document.getElementById('nav');
	var p = nav.getElementsByTagName('a');
	for(i = 0; i < p.length; i++) {
		if(p[i].style.fontSize) {
			var s = parseInt(p[i].style.fontSize.replace("em",""));
		} else {
			var s = 1;
		}
		if (left.clientHeight && window.screen.height)
			s = 0.6 + (left.clientHeight / window.screen.height);
		if (s > 1.4)
			s = 1.4;
//		document.title = s;
		p[i].style.fontSize = s + "em";
		p[i].style.paddingBottom = (s * s * s * s) + "px";
	}
}
window.onload=function(){
	var links = document.getElementsByTagName('a');
	for (var i = 0; i < links.length; i++) {
	    links[i]._title = links[i].title;
	    links[i].onmouseover = function() { 
	        this.title = '';
	    }
	    links[i].onmousedown = function() { 
	        this.title = this._title;
	    }
	    links[i].onmouseout = function() { 
	        this.title = this._title;
	    }
	}
	var images = document.getElementsByTagName('img');
	for (var i = 0; i < images.length; i++) {
	    images[i]._title = images[i].title;
	    images[i]._alt = images[i].alt;
	    images[i].onmouseover = function() { 
	        this.title = '';
	        this.alt = '';
	    }
	    images[i].onmouseout = function() { 
	        this.title = this._title;
	        this.alt = this._alt;
	    }
	}
}
window.onresize=function(){
//	resizeNavText();
}
$(document).ready(function(){
//	resizeNavText();
    if (document.getElementById("mopSlider") !== null && document.getElementById("mopSlider") !== undefined)
        $("#mopSlider").mopSlider({'w':900, 'h':575, 'sldW':600, 'btnW':200, 'indi':"", 'shuffle':'n', 'type':'black', 'auto':'y', 'move':1000, 'interval':2000});
});