$(function() {
//Listen for a click on the girl button$('#girl-btn').click(function() {
// When the girl button has been clicked, change the source of the #square image to be the girl PNG$('#square').prop("src", "https://homepages.cae.wisc.edu/~ece533/images/girl.png");});
//Listen for a click on the plane button$('#plane-btn').click(function() {
// When the plane button has been clicked, change the source of the #square image to be the plane PNG$('#square').prop("src", "https://homepages.cae.wisc.edu/~ece533/images/airplane.png");});
//Listen for a click on the fruit button$('#fruits-btn').click(function() {
// When the fruits button has been clicked, change the source of the #square image to be the fruits PNG$('#square').prop("src", "https://homepages.cae.wisc.edu/~ece533/images/fruits.png");});});