var campana_rules = 
{
		'#body_img img' : function(element)
		{
			element.onmouseover = function()
			{
					$().mousemove(function(e){
						$('#img_clicker').css({ top:e.pageY+10 });
						$('#img_clicker').css({ left:e.pageX });
					}); 
					$("#img_clicker").fadeIn(500);
			}
			element.onclick = function()
			{
				$("#img_clicker").remove();
			}
			element.onmouseout = function()
			{
				$("#img_clicker").fadeOut(500, function()
				{
					$("#img_clicker").remove();
				});
			}
		},
		'#collection a' : function(element){
			element.onmouseover = function(){
				 $(this).animate({color:"#000"}, 500);
			}
			element.onmouseout = function(){
				 $(this).animate({color:"#ef4123"}, 500);
			}
		},
		'.this_list' : function(element){
			element.onmouseover = function(){
				callback = function()
				{
					$(".search_results_more_info_text",this).slideDown();
				}
				$(".search_results_more_info",this).show(200);
				$(".search_results_more_info",this).animate( { width: "300px" },350, "swing", callback);
			}
		}
};
	
Behaviour.register(campana_rules);