Event.add(window, 'load', function()
{
	$('#menu_chi a, #menu_quando a, #menu_campagna a, #menu_contatti a').each(function(a)
	{
		a.addEvent('mouseover', function(e)
		{
			a.morph({
				styles: {
					backgroundPositionX: ['px', ACTUAL, -220]
				},
				stop: true,
				time: 0.5,
				effect: EE.outCubic
			});
		}).addEvent('mouseout', function(e)
		{
			a.morph({
				styles: {
					backgroundPositionX: ['px', ACTUAL, 0]
				},
				stop: true,
				time: 0.5,
				effect: EE.outCubic
			});
		});
		
	});
	
	var text, elm;
	if((elm = I('page_title')))
	{
		text = elm.getText();
		elm.replaceChilds(['img', {
			src: '/index.php?mdu=fontlift&t=' + encodeURIComponent(text) + '&s=40&b=F7EEF4&c=9A2E72&f=GeosansLight&w=510&p=2&m=2'
		}]);
	}
	
	if((elm = I('page_subtitle')))
	{
		text = elm.getText();
		elm.replaceChilds(['img', {
			src: '/index.php?mdu=fontlift&t=' + encodeURIComponent(text) + '&s=30&b=F7EEF4&c=9A2E72&f=GeosansLight&w=510&p=2&m=2'
		}]);
	}
	
});
