﻿//Script for interactivity in the Rep & Dealer Locater Web Part

$(document).ready(function(){
    $(".CompanyLink").click(function(){
      $(this).next().next().next().next().toggle();
      return false;
    });
    $("#RepNumber").click(function(){
        $(this).hide();
        $("#number").show();
        return false;
    });
});
