function showCss( this_id )
{
	if (jQuery("img#idImgOpenClose"+this_id).attr("src") == "img/freccia_su.png") {
	  if (jQuery("#divRot"+this_id).length) {
	    //stoppa l'animazione
	    clearInterval(eval("showtime_" + this_id));
	  }

	  jQuery("div#css-"+this_id).animate({"height": "65px"}, 300,"linear");
          jQuery("img#idImgOpenClose"+this_id).attr("src","img/freccia_giu.png");
	} else {
	  if (jQuery("#divRot"+this_id).length) {
	    //parte l'animazione della gallery
	    eval("showtime_" + this_id + " = setInterval('rotoreImmagini"+this_id+"()', 4500);");
	    //alert(eval("showtime_" + this_id));
	  }

	  jQuery("div#css-"+this_id).animate({"height": jQuery("#app-css-"+this_id).height()+"px"}, 300,"linear");
          jQuery("img#idImgOpenClose"+this_id).attr("src","img/freccia_su.png");
	}
}
function closeCss( this_id )
{
        jQuery("div#css-"+this_id).slideUp(400);
        jQuery("a#button_css-"+this_id).removeClass("selected1");
        //jQuery("#post-"+this_id+" .head").removeClass("select");
        jQuery("img#idImgOpenClose"+this_id).attr("src","img/freccia_giu.png");
}
