// JavaScript Document


jQuery(document).ready(function() {
        jQuery('#win-header-logo img').each(function() {
            jQuery(this).hover(function() {
                jQuery(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });


jQuery(document).ready(function() {
        jQuery('.winery-productos-box img').each(function() {
            jQuery(this).hover(function() {
                jQuery(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });


jQuery(document).ready(function() {
        jQuery('#winery-sidebar-promos img').each(function() {
            jQuery(this).hover(function() {
                jQuery(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });


jQuery(document).ready(function() {
        jQuery('#winery-sidebar-sucursales img').each(function() {
            jQuery(this).hover(function() {
                jQuery(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });


jQuery(document).ready(function() {
        jQuery('#sidebar-banners img').each(function() {
            jQuery(this).hover(function() {
                jQuery(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });

jQuery(document).ready(function() {
        jQuery('#winery-footer-col1-datos img').each(function() {
            jQuery(this).hover(function() {
                jQuery(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });


jQuery(document).ready(function() {
        jQuery('#winery-footer-col3-datos img').each(function() {
            jQuery(this).hover(function() {
                jQuery(this).stop().animate({ opacity: 0.5 }, 200);
            },
           function() {
               jQuery(this).stop().animate({ opacity: 1.0 }, 200);
           });
        });
    });
