﻿$(document).ready(function() {
    $("table.stripe tr:odd").addClass("light"); // table striping
    initContactUs();
    initCalendarPopup();
});

function initContactUs() {
    var $contactUsOptions = $("#contact-us-options");
    if ($contactUsOptions.length) {
        $contactUsOptions.change(function() {
            var contactUsLineage = $(this).val();
            if (contactUsLineage != '') {
                $("#contact-us-details").load("/services/contact_us_doc.aspx", { "l": "" + $(this).val() + "" });
            } else {
                $("#contact-us-details").text("");
            };
            return false;
        });        
    };
};

function initCalendarPopup() {
    $(".calendar").click(function() {
        openWindow($(this).attr("href"), 250, 200, "no");
        return false;
    });
};

function openWindow(href, width, height, scrollbars) {
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    window.open(href, "gallery", "left=" + left + ", top=" + top + ", width=" + width + ", height=" + height + ", scrollbars=" + scrollbars + ",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes");
};