Show Hide on mass level

Show Hide on mass level

I use the Show/ Hide .hover function but on a large scale and for 2 different things.. i was just wondering if there is anyway to shrink it... it's not causing a problem and works just fine but could potentially be smaller.

however; one set of the script works from images hover and displays an infobox on the left side about the "company" the other, works on links and images, again showing on the left side (set position).

if no way to shrink it thanks anyway :)

  1.         $(document).ready(function() {
                var cont_left = $("#zoomContainer").position().left;
                $(".zoom img").hover(function() {
                    // hover in
                    $(this).parent().parent().css("z-index", 1);
                    $(this).animate({
                       width: "130",
                       left: "-=50",
                       top: "-=50"
                    }, "fast");
                }, function() {
                    // hover out
                    $(this).parent().parent().css("z-index", 0);
                    $(this).animate({
                        width: "100",
                        left: "+=50",
                       top: "+=50"
                    }, "fast");
                });

                $(".zoom img").each(function(index) {
                var left = (index * 160) + cont_left;
                $(this).css("left", left + "px");
        });
    });
    $(function() {
         $("#assurant").hover(
              function() { $(".assurant").show(); },
              function() { $(".assurant").hide(); }
         );
    });
    $(function() {
         $("#hyperion").hover(
              function() { $(".hyperion").show(); },
              function() { $(".hyperion").hide(); }
         );
    });
    $(function() {
         $("#powerplace").hover(
              function() { $(".powerplace").show(); },
              function() { $(".powerplace").hide(); }
         );
    });
    $(function() {
         $("#ccv").hover(
              function() { $(".ccv").show(); },
              function() { $(".ccv").hide(); }
         );
    });
    $(function() {
         $("#le").hover(
              function() { $(".le").show(); },
              function() { $(".le").hide(); }
         );
    });
    $(function() {
         $("#cfc").hover(
              function() { $(".cfc").show(); },
              function() { $(".cfc").hide(); }
         );
    });
    $(function() {
         $("#qg").hover(
              function() { $(".qg").show(); },
              function() { $(".qg").hide(); }
         );
    });
    $(function() {
         $("#qg").hover(
              function() { $(".qg").show(); },
              function() { $(".qg").hide(); }
         );
    });
    $(function() {
         $("#sarah,#sarahLink").hover(
              function() { $("#sarahQuote").show(); },
              function() { $("#sarahQuote").hide(); }
         );
    });
    $(function() {
         $("#lesely,#lesLink").hover(
              function() { $("#leselyQuote").show(); },
              function() { $("#leselyQuote").hide(); }
         );
    });