﻿/// <reference path="../../Scripts/jquery-1.3.2-vsdoc.js" />

$(function() {

    $(".linkLanguageEn").click(function() {
        if ($("#LanguagePopupEn").length == 0) {
            var txt = "<div id='LanguagePopupTextPlate'>";
            txt += "<div style='padding-bottom:12px;'><b>We wish you a warm welcome to our holiday park Daft&ouml; Resort.</b></div>";
            txt += "Daft&ouml; Resort is a family business and in 35 years we have developed the campsite into a modern holiday park. It is our ambition to offer you facilities of the highest standard and give you a holiday of unforgettable memories. Relax, leave your worries behind and enjoy life! At Daft&ouml; there is always something to do for the whole family.";
            txt += "<div style='padding-top:12px; padding-bottom:12px;'>We are in the process of making an English version of our homepage.<br>If you have any questions, don't hesitate to send us an e-mail or call us.</div>";
            txt += "Let the adventure begin!";
            txt += "<div style='padding-top:12px; padding-bottom:12px;'><i>The Kempe family and staff</i></div>";
            txt += "<div class='FloatLeft' style='width:108px;'><b>E-mail:</b></div><div class='FloatLeft'><b>info@dafto.se</b></div><div class='ClearBoth'></div>";
            txt += "<div class='FloatLeft' style='width:108px;'><b>Telephone:</b></div><div class='FloatLeft'>+46 (0)526 260 40</div>";
            txt += "<div class='ClearBoth'></div>";
            $("#Wrapper").append("<div id='LanguagePopupEn'><div style='position:relativ;'><img id='LanguagePopupClose' class='ClickLink' src='/Content/Images/Language/Popup/close.png'/>" + txt + "</div></div>");
            
            $("#LanguagePopupClose").click(function() {
                LangEnHide();
            });
        }
        else {
            LangEnHide();
        }
    })
});

function LangEnHide() {
    $("#LanguagePopupEn").fadeOut(function() {
        $("#LanguagePopupEn").remove();
    });
    
}
