// JavaScript Document





$(document).ready(function() {

        $('#top-logos img').each(function() {

            $(this).hover(function() {

                $(this).stop().animate({ opacity: 0.5 }, 200);

            },

           function() {

               $(this).stop().animate({ opacity: 1.0 }, 200);

           });

        });

    });







$(document).ready(function() {

        $('.sidebar-widget-imagen img').each(function() {

            $(this).hover(function() {

                $(this).stop().animate({ opacity: 0.5 }, 200);

            },

           function() {

               $(this).stop().animate({ opacity: 1.0 }, 200);

           });

        });

    });





$(document).ready(function() {

        $('.home-box-localiza img').each(function() {

            $(this).hover(function() {

                $(this).stop().animate({ opacity: 0.5 }, 200);

            },

           function() {

               $(this).stop().animate({ opacity: 1.0 }, 200);

           });

        });

    });



$(document).ready(function() {

        $('.reserva-localiza img').each(function() {

            $(this).hover(function() {

                $(this).stop().animate({ opacity: 0.5 }, 200);

            },

           function() {

               $(this).stop().animate({ opacity: 1.0 }, 200);

           });

        });

    });




$(document).ready(function() {

        $('#consultas-footer img').each(function() {

            $(this).hover(function() {

                $(this).stop().animate({ opacity: 0.5 }, 200);

            },

           function() {

               $(this).stop().animate({ opacity: 1.0 }, 200);

           });

        });

    });
