      
jQuery.easing.def = "easeOutCirc";
    
    
// BUTTON HOVER
    
$(document).ready(function(){
$(".btn").hover(
function() {
$(this).stop().animate({"opacity": "0.4"}, "fast");
},
function() {
$(this).stop().animate({"opacity": "1"}, "fast");
}); 
});



