$(document).ready(function () {
    if ($("#section-content").length == 0) {
        $("#background-wrapper .bg").addClass("content-background");
    } else {
        $("#background-wrapper .bg").addClass("section-background");
    }

    $(".page-component, .pageclip, .navigationwrapper").hover(function () {
        $(this).addClass("hover");
    }, function () {
        $(this).removeClass("hover");
    });

    $(".signup input[type=text]").watermark("ENTER EMAIL ADDRESS");

    $(".lightbox").fancybox({titleShow:false});

    $(".contact-form form").validate();

    $("ul li:last-child").addClass("last");
    $("ul li:first-child").addClass("first");
    $(".accordion").accordion({ autoHeight: false });

    // new code for Google Analytics - auto tagging
    $('a[href*="yourreservation.net"]').click(function () {
        _gaq.push(['_link', this.href]);
        return false;
    });
});




















