$(document).ready(function() {
	
	//hide the all of the element with class msg_body
  $(".details").hide();
   $(".link_details").show();
     //toggle the componenet with class msg_body
     $(".link_details").click(function()
     {
       $(this).next(".details").slideToggle("slow");
     });
  
// $(".partner_logo").show();
// 	$(".partner_logo").click(function()
// 	  {
// 	    $(this).next(".details").slideToggle("slow");
// 	  });
	


$(".lightbox a").append("<span class='lupe'></span>");

});


