jQuery(document).ready(function() {
	
	setup();
	
	console.debug("ready");
	
	function setup() {
		var container;
		jQuery('.slide_button').toggle(
			function(){
				container = jQuery(this).parent().parent();
				jQuery('.slide_content', container).slideDown(200, function() {
					jQuery("a", jQuery('.slide_button', container)).html("Chiudi");
				});
			}, 
			function(){
				container = jQuery(this).parent().parent();
				jQuery('.slide_content', container).slideUp(200, function() {
					jQuery("a", jQuery('.slide_button', container)).html("Leggi tutto");
				});
			}
		);
		
		/*
		jQuery('.PostContent img').mouseover(function(){
			console.debug(jQuery(this).parent().parent().parent());
			//jQuery(this).parent().parent().parent().append('<div style="background: #ffffff;"></div>');
			//jQuery(this).css("opacity", "0.5");
			//jQuery(this).parent().html('<div></div>');
		});
		
		jQuery('.PostContent img').mouseleave(function(){
			//jQuery(this).css("opacity", "1");
		});
		*/
	}
	
});