var InitServizi = function() {
	$(".LessInfo").hide();
	$(".MoreInfo").bind('click',function(event) {
	 event.preventDefault();
		$(this).prev(".MoreInformation").show("blind",{direction:"vertical"},500);
		$(this).hide();
		$(this).next(".LessInfo").show();
	});
	$(".LessInfo").bind('click',function(event) {
	 event.preventDefault();
		$(this).prev(".MoreInfo").prev(".MoreInformation").hide("blind",{direction:"vertical"},500);
		$(this).hide();
		$(this).prev(".MoreInfo").show();
	});
}
