window.addEvent('domready', runtime);

function runtime()
{
	tabbedMenu( 'menu', 'here', 'index.php' );
	bindImageEvents();
	
	//separo titolo e testo nei tips
	$$('#testo img').each( function(element, index) 
	{  
		var content = element.alt.split(':'); 
		element.store('tip:title', content[0]);  
        element.store('tip:text', content[1] + "<div>clicca per ingrandire</div>");
		element.removeAttribute('alt');
    });  
	
	var myTips = new Tips('#testo img', {className: 'infoTip', fixed:false, offsets: {'x': 10,'y': 10} });
	
	$('menu').setStyle('opacity', 0.85);
	
	$('menu').addEvent('mouseenter', function()
	{
		new Fx.Tween('menu', 
		{
			//onComplete: function(){ $('menu').setStyle('font-weight', 'normal')}
		}).start('opacity', 0.85,1);
	});
	
	$('menu').addEvent('mouseleave', function()
	{
		new Fx.Tween('menu',
		{
			//onComplete: function(){ $('menu').setStyle('font-weight', 'bold')}
		}).start('opacity', 1, 0.85);
	});
}
