﻿$(document).ready(function () {

    $("#QuizzFaceBook").click(function() {
        window.open("/damedepink");
        return false;
    });

    // Rappelez moi d'utiliser Leetchi.com
    $('#slideshow').cycle({
        "fx": 'cover',
        "direction": 'right',
        "pause": 1,
        "speed": 600,
        "timeout": 4000,
        "pager": '#slidepager',
        "pagerAnchorBuilder": function (idx, slide) {
            return '<li class="slidepage"><a href="#"><span></span></a></li>';
        },
        "before": function (currSlideElement, nextSlideElement, options, forwardFlag) {
            var text = nextSlideElement.alt;
            $('#slidelegend').text(text).effect('slide', 600);
        }
    });

    $("#video_dialog").dialog({
        "autoOpen": false,
        "modal": true,
        "resizable": false,
        "title": _getLocalizable("LOGGEDOUT_WT"),
        "dialogClass": "Content",
        "width": 440
    });


    $("#video_zoom").click(function () {
        $("#video_dialog").dialog("open");
        return false;
    });

    $("#reminder_dialog").dialog({
        "autoOpen": false,
        "modal": true,
        "resizable": false,
        "title": _getLocalizable("LOGGEDOUT_REMINDER_TITLE"),
        "dialogClass": "Content",
        "width": 440
    });

    $("#reminder_zoom").click(function () {
        $("#reminder_dialog").dialog("open");
        return false;
    });

    $("#reminder_zoom").hover(
        function () {
            $("#reminder_zoom small").css("border-bottom", "1px dotted #6FCEE7");
        },
        function () {
            $("#reminder_zoom small").css("border-bottom", "none");
        }
    );

});
