/* Alambre Estudio Gr‡fico
   www.alambre.net
   //
   Javascript Menus Alambre Estudio CSS+XHTML
   MENUS 
   Enero 2010
*/    
    // fade

	$(function(){

    $("#reconocimiento_listado_grid ul li").hover(function(){
     $(this).animate({  backgroundColor: "#000000"}, 140);
    },function(){
     $(this).animate({  backgroundColor: "#ffffff"}, 100);
   	});
   	
   	 $("#reconocimiento_listado_lista tr").hover(function(){
     $(this).animate({  backgroundColor: "#000000"}, 140);
    },function(){
     $(this).animate({  backgroundColor: "#ffffff"}, 100);
   	});
   	

   	
  });


