var triennial_nomination_rules = 
{
		'#nominee_browser a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#fff"}, 500);
				 $(this).parent().animate({backgroundColor:"#356AA0"}, 200);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#356AA0"}, 200);
				 $(this).parent().animate({backgroundColor:"#eee"}, 500);
			}
		},
		'#footer a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#000"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#356AA0"}, 200);
			}
		},
		'#single_nominee ul li a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#eee"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#999"}, 200);
			}
		}
};
	
Behaviour.register(triennial_nomination_rules);