$(document).ready(function() {
    $(".loginform").hide()
    $(".premioslocales li").fadeTo(0, 0.7)
    $(".premioslocales li").hover( function(){
        $(this).fadeTo(0, 1)
    }, function(){
        $(this).fadeTo(0, 0.7)
    })
    $(".login").click(function(){
        $(".loginform").slideToggle()
    })
    
        
    $(".buttons a").fadeTo(0, 0.5)
    
    $(".buttons a").hover( function(){
        $(this).fadeTo(0, 1)
    }, function(){
        $(this).fadeTo(0, 0.5)
        })
    $(".buttons a").hover(function(){
        
        var b = this.firstChild.innerText
        
        if (!b){
            b = this.firstChild.textContent
        }
        $(this.parentNode.parentNode).children(".display").html(b)		
    },
    function(){
        $(this.parentNode.parentNode).children(".display").html("")
    })
});


