$(document).ready(function(){
    
    $(".ul_gama_productos li a img").hover(function(){
        $(this).css('opacity', 0.5)
    }, function(){
        $(this).css('opacity', 1)
    });
})
