﻿$(document).ready(function() {
    initialize();
});

initialize = function() {
    $("#moreInfoLink").click(function(e) { e.preventDefault(); toggleContent(); });
}

toggleContent = function() {
    if ($("#content-1").hasClass("hide")) {
        $("#content-1").removeClass("hide");
        $("#content-2").addClass("hide");
    }
    else {
        $("#content-1").addClass("hide");
        $("#content-2").removeClass("hide");
    }

}
