

$(document).ready( function () {	

	$("div.readable_group .readable").css("display", "none");
	
	$("p.read").click(
		function () {
			readables = $(this).nextAll($(".readable"));
	});
	
	$("p.read").toggle(function() {
		$(this).html("[minimieren]");
		$(this).nextAll($(".readable")).fadeIn(1000, function () {
		
			$(this).parent().find("img.special_image").animate({
					width: "300px", 
			    height: "360px"
			  }, 500, function() {
			    $(this).parent().find("img.special_image").attr("src", "img/png/specials/image/"+vInit.imgID+".png");
			  });
			});
		
	}, function() {
		$(this).html("[mehr lesen ...]");
		$(this).nextAll($(".readable")).fadeOut(1000, function () {
		
			$(this).parent().find("img.special_image").animate({
					width: "100px", 
			    height: "120px"
			  }, 500, function() {
			    $(this).parent().find("img.special_image").attr("src", "img/png/specials/thumb/"+vInit.imgID+".png");
			  });
			});
	});

});

function vInit (num) {
	vInit.imgID = num;
	console.info (vInit.imgID);
	}