jQuery(document).ready(function() {
  jQuery(".slidercontent").hide();
  //toggle the componenet with class msg_body
  jQuery(".slidertext").click(function()
  {
    jQuery(this).next(".slidercontent").slideToggle("fast");
  });
});


$('#content a, #content img').tooltip({
showURL: false,
delay: 500  
});


