$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $("#block-designers-earn1 .block-content").hide();
  //toggle the componenet with class msg_body
  $("#block-designers-earn .block-subject").click(function()
  {
    $(this).next("#block-designers-earn .block-content").slideToggle(600);
   
  });
 
$("#block-designers-earn1 .block-subject").click(function()
  {
    $(this).next("#block-designers-earn1 .block-content").slideToggle(600);
   
  });

/*$("#block-sponsors .block-subject").click(function()
  {
    $(this).next("#block-sponsors .block-content").slideToggle(600);
   
  });*/
  $("#block-designers-login .block-content").hide();
  $("#block-designers-login .block-subject").click(function()
  {
    $(this).next("#block-designers-login .block-content").slideToggle(600);
   
  });
  $("#block-favourites .block-content").hide();
  $("#block-favourites .block-subject").click(function()
  {
    $(this).next("#block-favourites .block-content").slideToggle(600);
   
  });
	
});
