/* Nome Cliente 	bonomi */
/* Creato:			16/07/2009 */
/* Autore:			fabio@evoluzionetelematica.it */
/* Ultima Modifica:	gg/mm/aaaa	Autore: Nome Cognome */

//<![CDATA[
		

	


var bonomi = {
	
	startDomReady: function(){
		if ($$('.tips') != '') bonomi.toolTip()
		if ($$('.boxed') != '') bonomi.initSqueezeBox()

	},	

	
	
	
	
	initSqueezeBox: function() // Inizializzo lo squuezebox x effetto lightbox x iFrame
	{
		SqueezeBox.assign($$('.boxed'), {
			parse: 'rel'
		});
	}, // Fine initSqueezeBox()

	
	toolTip: function () 
	{
		var tooltips = $$('.tips');
		 
		var toolTips = new Tips(tooltips, {
			showDelay: 100,    //default is 100
			hideDelay: 100,   //default is 100
			className: 'tips', //default is null
			//this sets the x and y offets
			offsets: {
				'x': -80,       //default is 16
				'y': -45        //default is 16
			},
			fixed: false,      //default is false
			onShow: function(toolTipElement){
				toolTipElement.fade(1);
			},
			onHide: function(toolTipElement){
				toolTipElement.fade(0);
			}
		});


	} // fine tooltip
	
	
	
} // chiusura classe bonomi

///////////////////////////////////////////////////////

window.addEvent('domready', bonomi.startDomReady);


//]]>