$(document).ready(function() {
	if($("#container").hasClass(".gallery")){
		$(".gallery_list_container").each(function() {
			gallery_list_container_height = $(this).height();
			//console.log(gallery_list_container_height);
			shrink_height = 196;
			$(this).data("gallery_list_container_height",gallery_list_container_height);
			$(this).css("height",shrink_height);
		});
		
		$(".gallery_toggle").toggle(
			function (){
				shrink_height = "196px";
				full_height = $(this).parents(".gallery_list_container").data("gallery_list_container_height");
				$(this).parents(".gallery_list_container").animate({"height":full_height},500);
				$(this).empty();
				$(this).html("&#8855; Collapse");
				return false;
			},
			function (){
				$(this).parents(".gallery_list_container").animate({"height":shrink_height},500);
				$(this).empty();
				$(this).html("&#187; View All");
				return false;
			}
		);
	}
});
