  $(document).ready(function(){

    $(".hiddenred").mouseover(function() {
    
    	$(".hiddenred").css("color","red");
    	$(".hiddenred").css("font-size", "1.1em");
    
    });

    $(".hiddenred").mouseout(function() {
    
    	$(".hiddenred").css("color","#333");
    	$(".hiddenred").css("font-size", "1.0em");
    
    });    
    
    $(".hiddenText").hide();

    $(".showHidden").mouseover(function() {
    
    	$(this).parent().next().show();
    
    });

    $(".showHidden").mouseout(function() {
    
    	$(this).parent().next().hide();
    
    });    

  });
