/***********************************************
 * Studio Lovotrico .Net
 * www.studiolovotrico.net
 * info@studiolovotrico.net
 * Copyright: Guillermo Lovotrico
 * All right reserved
 ***********************************************/
/*
 * EFFETI CHE VENGONO ATTIVATI AL CARICAMENTO DELLA PAGINA
 * --- RICHIEDE MOOTOOLS --- 
 */

window.addEvent('domready', function() {
	// applica ombra alla classe 'ombra'
	var colore = '#f70';
	var spostamento = 2;
	var ombre = $$('.ombra');
	ombre.each(function(e){
		applyShadow(e, colore, spostamento);
	})
	
	// crea contenuto news scorrevole
	visualizzaNews = function(target,testo){
		target.set('html','<marquee onmouseover="this.stop();" onmouseout="this.start();">'+testo+'</marquee>\n');
	}
	
	if($('news-header') && $('testo-news')){
		visualizzaNews($('news-header'),$('testo-news').get('html'));
	}
		
		
/*
	var morphHeader = function() {
		$('header').set('morph',{duration:'long'});
		$('header').morph({
			height: 118,
			'background-image': 'url(images/header2.1.png)',
		});
	}
	
	window.setTimeout(morphHeader,2500);
	
*/
		
});


	

