var rococo_rules = 
{
		'a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#85e9a0"}, 1000);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#0d8dca"}, 1000);
			}
		},
		'#m_nav a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#0d8dca"}, 1000);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#88bc8c"}, 1000);
			}
		},
		'.img_caption_dtls a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#999"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#000"}, 500);
			}
		},
		'#ftr a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#333"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#999"}, 500);
			}
		},
		'#mddl li' : function(element){
			element.onmouseover = function(){
				callback = function()
				{
					$(".img_caption_dtls",this).slideDown();
				}
				$(".img_caption",this).show(200);
				$(".img_caption",this).animate( { width: "250px" },350, "swing", callback);
			}
		}
};
	
Behaviour.register(rococo_rules);