$(document).ready(function(){
    $('#metodos #metodo2').html($('#metodos #metodo2').html()+'<!-- <span style="color:red;font-size:x-small;font-weight:bold;">"No haz iniciado sesión"</span>-->');
});

$('#metodo1').live('click',function(){
    $('#download-form #download_submit2').attr('id', 'download_submit');
    $('#metodos .active').removeClass('active');
    $(this).addClass('active');
    $('#metodos #servidores').html('Megaupload');
    return false;
});

$('#metodo2').live('click',function(){
    $('#download-form #download_submit').attr('id', 'download_submit2');
    $('#metodos .active').removeClass('active');
    $(this).addClass('active');
    $('#metodos #servidores').html('Megaupload | RapidShare | Wupload');
    return false;
});

$('#download_submit2').live('click',function(){
    if($('#download-form #link').val() != ''){
        $('#index #news').slideUp(500);
        var elemet2;
        $('#download-form #link').val('');
        $('#resp').prepend('<div class="fileerror">\n\
            ERROR: No haz iniciado sesión.\n\
            </div>'
        );
        element2 = $('#resp .fileerror:first');
        $(element2).hide();
        $(element2).slideDown(500);
    }
    return false;
});

