var nda_rules = 
{
		'a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#999"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#00aeef"}, 400);
			}
		},
		'#footer a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#00aeef"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#999"}, 400);
			}
		},
		'#leftCol li a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#00aeef"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#000"}, 400);
			}
		},
		'.AwardRightContent_rightCol h2 a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#00aeef"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#000"}, 500);
			}
		},
		'#single_nominee ul li a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#eee"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#999"}, 200);
			}
		},'#nda_topnav a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#000"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#666"}, 500);
			}
		},'#awardTitle a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#000"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#00aeef"}, 500);
			}
		},'#stage a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#000"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#fff"}, 500);
			}
		}
		
}



Behaviour.register(nda_rules);