﻿$(document).ready(function() {
    var lang = window.location.toString();
    if (lang.indexOf("_eng") >= 0) {
        $.cookie('language', 'ingles');
    }
    else {
        $.cookie('language', '', { expires: -7 });
    }


    $('body').bind("click", function(e) {
        if ($(e.target).hasClass('open_contact_form')) {
            if ($('#contactForm').length < 1) {
                $('body').append("<div id='contactForm' style='width: 400px;background-color:#000000;    position:absolute;height:525px; margin-left:50%; left:-200px; top:20px; border:1px solid #FF00FF; overflow:hidden; '><div class='xclose' style='position:absolute; color:white; cursor:pointer; right:5px; top:0; padding:5px; '>x</div><iframe src='contact.aspx' frameborder='0' style='width: 570px; height: 850px; overflow:hidden; display:none; ' ></iframe></div>");
                setTimeout(function() {
                $('#contactForm').animate({ 'height': '810px', 'width': '570px', 'left': '-285px', 'callback': setTimeout(function() { $('#contactForm iframe').fadeIn(1000); }, 800) });
                }, 600);
                return false;
            }
            else {
                $('#contactForm').remove();
            }
        }

        if ($(e.target).hasClass('xclose')) {
            $(e.target).parent().remove();
        }
    });


});