 $(document).ready(function() {

    $("#box0 img").mouseover(function(){
      $("#box0 h3 a").addClass('active');
    }).mouseout(function(){
      $("#box0 h3 a").removeClass('active');
    });
    
    $("#box1 img").mouseover(function(){
      $("#box1 h3 a").addClass('active');
    }).mouseout(function(){
      $("#box1 h3 a").removeClass('active');
    });
    
     $("#box2 img").mouseover(function(){
      $("#box2 h3 a").addClass('active');
    }).mouseout(function(){
      $("#box2 h3 a").removeClass('active');
    });
    
     $("#box3 img").mouseover(function(){
      $("#box3 h3 a").addClass('active');
    }).mouseout(function(){
      $("#box3 h3 a").removeClass('active');
    });
    
     $("#box4 img").mouseover(function(){
      $("#box4 h3 a").addClass('active');
    }).mouseout(function(){
      $("#box4 h3 a").removeClass('active');
    });
    
     $("#box5 img").mouseover(function(){
      $("#box5 h3 a").addClass('active');
    }).mouseout(function(){
      $("#box5 h3 a").removeClass('active');
    });

 });

