// JavaScript Document

$(function() {

    // Site Map Transform
    if ($("#siteMap").length) {
    }

    // Main Nav Images
    $("#nav img.regImage").each(function() {

        var listItem = document.createElement("li");
        $(listItem).addClass("regImage");
        $(this).parent().eq(0).find("ul").eq(0).append(listItem);
        $(this).parent().eq(0).find("li.regImage").eq(0).append(this);
    });

    $(".snapshotsGallery a").click(function() {
        var imageLink = $(this).attr("href");
        var caption = $(this).attr("title");
        if (caption == "") {
            caption = "Click below to view more of this hotel";
        }
        $(".snapshotsGallery .mainImage img").attr("src", imageLink);
        $(".snapshotsGallery .mainImage p.caption").text(caption);
        return false;
    });

    $(".snapshotsGallery .row a:first-child").addClass("first");

    // To allow removal of margin-bottom on last element in .intro div
    $(".safariHotelsGallery .row .intro *:last-child").addClass("last");

});