jQuery(document).ready(function(){

    jQuery('.support-link a').hover( function(){
        jQuery(this).parents('div.support-box').css('background','#F9F7BA');
    }, function() {
      jQuery(this).parents('div.support-box').css('background','transparent');
    });

});
