window.addEvent('domready',function(){

$$('.box_famiglia img').each(function(element){
	element.addEvent('mouseover',function(){
		element.addClass('mouseon');
	});
	element.addEvent('mouseout',function(){
		element.removeClass('mouseon');
	});
});

$$('.box_ricerca img').each(function(element){
	element.addEvent('mouseover',function(){
		element.addClass('mouseon');
	});
	element.addEvent('mouseout',function(){
		element.removeClass('mouseon');
	});
});

input_top=0;

//-- SAFARI --//
if(window.webkit){
	input_top=2;
	$('box').style.position='absolute';
	$('box').style.top=input_top+'px';
	$('footer').style.fontSize='0.75em';
	$$('.voci_principale a').each(function(element){
		element.style.paddingTop='2px';
	});
	$$('.voci_principale span').each(function(element){
		element.style.paddingTop='2px';
	});
}


//-- INTERNET EXPLORER 6 --//
if(window.ie6){
	input_top=2;
	$('box').style.position='absolute';
	$('box').style.top=input_top+'px';
	$('footer').style.fontSize='0.75em';
}


// INTERNET EXPLORER 7 --//
if(window.ie7){
	input_top=2;
	$('box').style.position='absolute';
	$('box').style.top=input_top+'px';
	$('footer').style.fontSize='0.75em';
}

if($('menu_link_flash')){
	$('menu_link_flash').addEvent('mouseenter',function(){
		$('menu_link_flash').addClass('selected');
	});
	$('menu_link_flash').addEvent('mouseleave',function(){
			$('menu_link_flash').removeClass('selected')
	});
}

});
