$(document).ready( function() {
     // Home Image Hover
     $('.nav_image').hover( function() {
         $('.default', this).stop().animate({opacity: '0'}, 'slow');
     },
     function() {
         $('.default', this).stop().animate({opacity: '1'}, 'slow');
     });

     // Portfolio Hover
     $('#nav .portfolio').hover( function() {
         $('#column_3_wide .portfolio .default').stop().animate({opacity: 0}, 'slow');
     },
     function() {
         $('#column_3_wide .portfolio .default').stop().animate({opacity: 1}, 'slow');
     });

     // About Hover
     $('#nav .about').hover( function() {
         $('#column_3_wide .about .default').stop().animate({opacity: 0}, 'slow');
     },
     function() {
         $('#column_3_wide .about .default').stop().animate({opacity: 1}, 'slow');
     });

     // Services Hover
     $('#nav .services').hover( function() {
         $('#column_3_wide .services .default').stop().animate({opacity: 0}, 'slow');
     },
     function() {
         $('#column_3_wide .services .default').stop().animate({opacity: 1}, 'slow');
     });

     // Contact Hover
     $('#nav .contact').hover( function() {
         $('#column_3_wide .contact .default').stop().animate({opacity: 0}, 'slow');
     },
     function() {
         $('#column_3_wide .contact .default').stop().animate({opacity: 1}, 'slow');
     });
 });

