﻿var dotLocations = [0, 55, 170, 290, 410];
function showFeature(a) {
    /*$("#featureDot").animate({
        left: dotLocations[a]
    }, 150, function () { /* animation complete * / });*/
}


function toggleBox(dom) {
    $("#" + dom + "_Content").slideToggle();
    if (parseInt($("#" + dom+"_Content").css('height')) == 1) {
        $("#"+dom+"_instruction").html("Click to close");
    }
    else
    {
        $("#"+dom+"_instruction").html("Click to see more");
    }
}
