﻿$(document).ready(function () {
  $("ul.chartChoice").show();
  $("p.chartChoice1Month").hide();
  $("ul.chartChoice li a").click(function () {
    $("ul.chartChoice li").removeClass("active");
    $(this).parent().addClass("active");
    var rel = $(this).attr("rel");
    // Hide all images
    $("div.sharePriceGraph img").removeClass("active");
    // Show Appropriate Image
    $("div.sharePriceGraph img[alt=" + rel + "]").addClass("active");
    return false;
  });

});
