var actual = '2005';

$(function() {
    $('.palmaresvisual').click(function(){
        var year = $(this).attr('id');
        var box  = '#box' + actual;
        $(box).toggle();
        actual   = year;
        var box  = '#box' + year;
        $(box).toggle();
    });


    $(".lightbox").fancybox({
     'autoDimensions': true
    });

    $('#blank_email').focus(function(){
        $('#blank_email').toggle();
        $('#email').toggle();
        $('#email').focus();
    });

    $('#email').blur(function(){
       if($('#email').val() == '')
       {
        $('#email').toggle();
        $('#blank_email').toggle();
       }
    });

    $('#blank_password').focus(function(){
        $('#blank_password').toggle();
        $('#password').toggle();
        $('#password').focus();
    });

    $('#password').blur(function(){
       if($('#password').val() == '')
       {
        $('#password').toggle();
        $('#blank_password').toggle();
       }
    });
});
