var MonsterRules = {
	'div#navigation li.inactive a' : function(element){
			element.onmouseover = function(){
			showToolTip(this);			
		},
			element.onmouseout = function(){
			hideToolTip();
		},
			element.onclick = function(){
			return false;
		}
	},	
	'div.reel_controls ul li a' : function(element){
		element.onclick = function(){			
			changeImage(this);
			return false;
		}
	},
	'div.reel a' : function(element){
		element.onclick = function(){			
			nextImage(this);
			return false;
		}
	},
	'a.inactive' : function(element){
			element.onmouseover = function(){
			showToolTip(this);			
		},
			element.onmouseout = function(){
			hideToolTip();
		},
			element.onclick = function(){
			return false;
		}
	},
	'button.submitPEF' : function(element){
		element.onclick = function(){			
			submitForm();
			return false;
		}	
	}
}
