window.addEvent("domready",function() {
	if(window.ie) {
		var elms = $ES("a");
		elms.each(function(item, index){
			if(item.href.indexOf("#") == -1) {
				item.addEvent("mousedown",function() {
					window.open(this.href,"_top");
				});
				item.addEvent("click",function (e) {
					(new Event(e)).stop();
					return false;
				});
			}
		});
		return;
	}

	var elms = $ES(".hoverFadeFx");
	elms.each(function(item, index){
		item.addEvent("mouseenter",function () {
			(new Fx.Styles(this, {duration:300, wait:false})).start({
						'opacity': [0.2,1]
					});
		});
		item.addEvent("mouseleave",function () {
			(new Fx.Styles(this, {duration:600, wait:false})).start({
						'opacity': [1,0.95]
					});
		});

	}); 
});