function reloj(){
    if(cont==true){
        $('#banner2, #link2').fadeOut();
        cont = false;
    }else{
        $('#banner2, #link2').fadeIn();
        cont = true;
    }
}
$(document).ready(function(){
    cont = true;
    setInterval("reloj()",7000);
});
