﻿$(document).ready(function(){
    
    $('.hover_banner').css("opacity","0");

    $('.hover_banner').hover(function(){
        $(this).animate({opacity: 100}, 500);
    },function(){
        $(this).animate({opacity: 0}, 500);
    });
});
