// JavaScript Document
// This script fades images on rollover using jQuery

$(document).ready(function() {
        $('img.fade_on_hover').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.5 }, 300);
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, 300);
           });
        });
    });