// JavaScript Document
// basic show and hide

    $(document).ready(function() {
         /*
 $("#process td").each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.6 }, 500);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 500);
           });
        }); */
        $("div .processText").each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.75 }, 500);
            },
           function() {
               $(this).stop().animate({ opacity: 0.0 }, 500);
           });
        });
    });

  /*

$(document).ready(function() {
  	   $("td .hoverFade").hover(function(){$(this).fadeOut("slow");$(this).fadeIn("slow");
	});
});
  
  
  
  
  $('#hideh1').click( function() {
    $('div.showhide,h1').hide();
   });
   $('#showh1').hover( function() {
    $('div.showhide,h1').show();
   });
   $('#toggleh1').click( function() {
    $('div.showhide,h1').toggle();
   });

});
 */