<!--//---------------------------------+
//  Developed Karly Cunningham
// --------------------------------->

$(document).ready(function()
{


$('.mn-location1').click(function() {
  $('#location1-content').animate({
    width: "300px"
  }, 300, function() {
    // Animation complete.
  });
  $("#location2-content").css({display:"none", width:"0px"});
  $("#location3-content").css({display:"none", width:"0px"});
});

$('.mn-location2').click(function() {
  $('#location2-content').animate({
   width: "300px"
  }, 300, function() {
    // Animation complete.
  });
  $("#location1-content").css({display:"none", width:"0px"});
  $("#location3-content").css({display:"none", width:"0px"});
});

$('.mn-location3').click(function() {
  $('#location3-content').animate({
    width: "300px"
  }, 300, function() {
    // Animation complete.
  });
  $("#location2-content").css({display:"none", width:"0px"});
  $("#location1-content").css({display:"none", width:"0px"});
});



}); <!-- end document ready function -->
