// JavaScript Document

$(document).ready(function() {
        $('.btnImage').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 1.0 }, 100);
            },
           function() {
               $(this).stop().animate({ opacity: 0.4 }, 600);
           });
        });
		
    });
