$(document).ready(function()  { 

     // IE6 doesn't handle the fade effect very well - so we'll stick with
     // the default non JavaScript version if that is the user's browser.
     if ($.browser.msie && $.browser.version <= "6") return;
  
     $("a.respRolloverImage").hover(function() {
        $(this).fadeTo("500", 1.0); // This should set the opacity to 100% on hover
     },function() {
        $(this).fadeTo("500", 0.7); // This should set the opacity back to 60% on mouseout
     });

     $("a.reqRolloverImage").hover(function() {
        $(this).fadeTo("500", 1.0); // This should set the opacity to 100% on hover
     },function() {
        $(this).fadeTo("500", 0.7); // This should set the opacity back to 60% on mouseout
     });

     $("a.servRolloverImage").hover(function() {
        $(this).fadeTo("500", 1.0); // This should set the opacity to 100% on hover
     },function() {
        $(this).fadeTo("500", 0.7); // This should set the opacity back to 60% on mouseout
     });

     $("a.teamRolloverImage").hover(function() {
        $(this).fadeTo("500", 1.0); // This should set the opacity to 100% on hover
     },function( ){
        $(this).fadeTo("500", 0.7); // This should set the opacity back to 60% on mouseout
     });
});