/*JQuery Method that shows and hides information in css class panel. It is invokes by the click event that triggered by css class flip*/
$(document).ready(function(){
$(".flip").click(function(){
    $(".panel").slideToggle("slow");
  });
});

