
   $(document).ready(function(){
      $("a").hover(
            function() {
               $('#'+ $(this).attr('menu') ).stop(true, true).show("fast");
			        $('#'+ $(this).attr('img') ).stop(true, true).animate({ borderRightColor: "#d3d3d3", borderLeftColor: "#d3d3d3"}, 100);


            },
            function() {
               $('#'+ $(this).attr('menu') ).hide("slow");
			        $('#'+ $(this).attr('img') ).animate({ borderRightColor: "white", borderLeftColor: "white"}, 500);
			
					
					
            }
         );
   });
