$(document).ready(function(){
	$(".boxetUntoglable").toggle();
	$('.boxet_title').click(function(){
		//alert($(this).html());
		$(this).parent().children('#boxet_content').toggle("slow");
	});
});

