$(document).ready(function() { 

	$(".gallery_teaser").click(function() {
		//$(this).next(".gallery_thumbs").slideToggle();
		
		if ($(this).next(".gallery_thumbs").css("display")=="none") {
			$(this).next(".gallery_thumbs").show();
		
			content_id = $(this).parent().attr("rel");
		
			$(this).next(".gallery_thumbs").load("listener_content.php",
				{ template: "gallery", gallery_action: "thumbnails", content_id: content_id },

				function() {
			
					$(".gallery_thumbs").children(".gallery_thumb").children("a").lightBox();	
				}

			);
		
		
		} else {
			$(this).next(".gallery_thumbs").hide();
			
		}
		
	
	});
	
	$(".gallery_headline").click(function() {
		$(this).next(".gallery_teaser").click();
	
	});

});