﻿timerID = 0

function cambiarimagen(pos, numimag, id) {
    imagen = new Image;
    imagen.src = "/pic/img/Out/Canal/thumbs/" + id + "/" + id + "_" + pos + ".jpg/cw/90/ch/70";

    document.images[id].src = imagen.src;
    pos = pos + 1;
    if (pos == numimag) {
        pos = 0;
    }

    timerID = setTimeout("cambiarimagen(" + pos + "," + numimag + ",'" + id + "')", 500);
}
function parar(id) {
    clearTimeout(timerID);
    imagen = new Image;
    imagen.src = "/pic/img/Out/Canal/thumbs/" + id + "/" + id + "_0.jpg/cw/90/ch/70";

    document.images[id].src = imagen.src;
}

$(document).ready(function () {
    $("#votar").click(function () {
        if ($("#rating").is(":hidden")) {
            $("#rating").slideDown("slow");
        } else {
            $("#rating").slideUp("slow");
        }
    });

    $("#perfil").click(function () {
        if ($("#login").is(":hidden")) {
            $("#login").slideDown("slow");
        } else {
            $("#login").slideUp("slow");
        }

        if ($("#login2").is(":hidden")) {
            $("#login2").slideDown("slow");
        } else {
            $("#login2").slideUp("slow");
        }
    });

    $("#ganadores").click(function () {
        if ($("#vidganadores").is(":hidden")) {
            $("#vidganadores").slideDown("slow");
        } else {
            $("#vidganadores").slideUp("slow");
        }
    });
});
