window.addEvent('domready', function() {

	if($("menub")) menub();
	
	if($("dx")) dx();
	
	if($("pagine")) pagine();

});

function menub()
{
	$$('#menub a.inactive').each(function(item, index) {

		var duration = 500;
		
		item.set('tween', { duration: 200 });

		item.addEvent('mouseover', function(){
			this.tween('height','20');
		});

		item.addEvent('mouseout', function(){
			this.tween('height','14');
		});

	});
}

function dx()
{
	$$('#dx a img').each(function(item, index) {

		var duration = 500;

		item.addEvent('mouseover', function(){
			this.fade(0.1);
		});

		item.addEvent('mouseout', function(){
			this.fade(1);
		});

	});
}

function pagine()
{
	$$('#pagine a img').each(function(item, index) {

		var duration = 500;

		item.addEvent('mouseover', function(){
			this.fade(0.1);
		});

		item.addEvent('mouseout', function(){
			this.fade(1);
		});

	});
}