var nda_rules = 
{
		'#a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#999"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#164397"}, 400);
			}
		},
		'#leftCol li a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#d71920"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#545358"}, 400);
			}
		},
		'.AwardRightContent_rightCol h2 a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#d71920"}, 500);
         $(this).parent().parent().animate({backgroundColor:"#f3f3f3"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#164397"}, 500);
				 $(this).parent().parent().animate({backgroundColor:"#fff"}, 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:"#164397"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#000"}, 500);
			}
		},'#littleThumbs img' : function(element) {
			element.onmouseover = function(){
				$(this).animate({
					backgroundColor:'#333'
				},500);
			};
			element.onmouseout = function(){
				$(this).animate({
					backgroundColor:'#fff'
				},500);
			};
		}
}
	
Behaviour.register(nda_rules);