// JavaScript Document
$(document).ready(function(){
$(".icono-producto").fadeTo("slow", 0.3);
$(".icono-producto").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.3);
});
});

$(document).ready(function(){
$(".banderas").fadeTo("slow", 0.3);
$(".banderas").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.3);
});
});


