// JavaScript Document
jQuery(document).ready(function()
{
  //hide the all of the element with class msg_body
  jQuery(".msg_body").show();
  //toggle the componenet with class msg_body
  jQuery(".msg_head").click(function()
  {
    jQuery(this).next(".msg_body").slideToggle(600);
    if(jQuery(this).find(".expand_arrow").attr('src')=='/domains/101/templates/en/default/resources/images/expand_arrow.png'){
      jQuery(this).find(".expand_arrow").attr('src','/domains/101/templates/en/default/resources/images/expand_arrow_up.png');
    }else{
      jQuery(this).find(".expand_arrow").attr('src','/domains/101/templates/en/default/resources/images/expand_arrow.png');  
    }
    
    
  });

});





// and here comes the show all link on booking tab
jQuery(document).ready(function()
{
  //hide the all of the element with class msg_body
  jQuery(".all_body").hide();
  //toggle the componenet with class msg_body
  jQuery(".showall").click(function()
  {
    jQuery(this).next(".all_body").slideToggle(600);
  });
});
