$(document).ready(function(){
	
	$("#btn_area_riservata").click(function() {
		$(this).parent().find(".ctn").animate({
		  "height": "toggle", "opacity": "toggle"
		}, 1000);
		if($(this).hasClass("active"))
		{
			$(this).removeClass("active");
		}
		else {
			$(this).addClass("active");
		}				
	});

	/*Table*/	
	$("table.generic").each(function()
	{
		// replace first td with th
		$(this).find("tbody tr").each(function(i)
		{
			$(this).find(">td:first").replaceWith("<th>" + $(this).find(">td:first").html() + "</th>");
		})
		// remove thead
		$("thead").remove();
	})
})
