   var NotEvent = Class.create();        
	          
	NotEvent.prototype = {
	    initialize: function() {
	        this.stopEvent();
	    },
	    stopEvent: function() {  			
	        document.observe('click', (function(event){
	            var target = event.findElement('a[rel^=notevent]') || event.findElement('area[rel^=notevent]');
	            if (target) {
	                event.stop();
	            }
	        }).bind(this));
	    }
	}		
			    
	document.observe('dom:loaded', function () { new NotEvent(); });
		
 	var MoveMenu = Class.create();        
	          
	MoveMenu.prototype = {
	    initialize: function() {	    	
	        this.stopEvent();
	    },
	    stopEvent: function() {  			
	        document.observe('click', (function(event){
	            var target = event.findElement('a[rel^=movemenu]') || event.findElement('area[rel^=movemenu]');
	            if (target) {
	                event.stop();
	                viewPort = document.viewport.getScrollOffsets(); 
	                window.location.href = target.href + "&yScroll=" + viewPort.top;
	            }
	        }).bind(this));
	    }
	}		
			    
	document.observe('dom:loaded', function () { new MoveMenu(); });

