window.addEvent('domready',function() { 
	if ($('navigation_path')) {
		/*$$('#navigation_path li a').each(function (el) {
			el.appendText(' > ');		
		});
		var last = $$('#navigation_path li a').getLast().get('text');
		var newtxt = last.substring(0,last.length - 2);*/
		$$('#navigation_path li span').getLast().empty();
	}
	if ($('latest_news')) {
		$$('#latest_news .text').each( function( elem ){
			if (elem.getElement('img')) {
				var divs = new Element('div', {
				    'class': 'contentImage'
				}).inject(elem,'top');
				 elem.getElement('img').inject(divs);
			 }
		});
	}
	var now = new Date();
	var today = now.format("%x");
if ($('calBody')) {
	new Calendar({
			calContainer:'calBody',
			newDate:today,
			scroller: false,
			feedPlugin: new mooCalFeed()
	});
}
	if ($('form_contatti')) {
		new FormCheck('form_contatti', {
			display : {				
				closeTipsButton : 1,
				showErrors : 1
			}
		});
	}
});
