$(function() {
      $('.lightbox').lightBox();
      $(".teacher").hide();
      $(".teacher").children("p").css({'margin':'0'})
			$(".teacher").prev("p").children(".slide").click( 
					function () {
					    $(".teacher").slideUp();
							$(this).parent("p").next("div").not("div:visible").slideToggle();
							return false;
					});    
});