$(document).ready(function() {
    
    
    
    $(".yoxview").yoxview({
        skin: "top_menu",
        allowInternalLinks: true
        
    });
    
    
    $("#aviso").yoxview();
    $(".boton").css("opacity", ".5");
    $(".boton").css("filter", "alpha(opacity=50)");
    
    $(".menu2,.menu3,.menu4").hover(
        function() {
            $(this).css("background-color", "white")
        },
        function() {
            $(this).css("background-color", "transparent")
        }
        );
    $("a  img").hover(
        function() {
            $(this).css("opacity", ".5")
            $(this).css("filter", "alpha(opacity=50)");
        },
        function() {
            $(this).css("opacity", "1")
            $(this).css("filter", "alpha(opacity=100)");
        }
        );
            
    $(".boton").hover(
        function() {
            $(this).css("opacity", "1")
            $(this).css("filter", "alpha(opacity=100)");
        },
        function() {
            $(this).css("opacity", ".5")
            $(this).css("filter", "alpha(opacity=50)");
        }
        );
            
   
            
});







