
function fadeIn(objId,opacity) {
	if (document.getElementById) {
		obj = document.getElementById(objId);
		if (opacity <= 100) {
			setOpacity(obj, opacity);
			opacity -= 10;
			window.setTimeout("fadeIn('"+objId+"',"+opacity+")", 100);
		}
	}
}
function setOpacity(obj, opacity) {
	opacity = (opacity == 100)?99.999:opacity;
	// IE/Win
	obj.style.filter = "alpha(opacity:"+opacity+")";
	// Safari<1.2, Konqueror
	obj.style.KHTMLOpacity = opacity/100;
	// Older Mozilla and Firefox
	obj.style.MozOpacity = opacity/100;
	// Safari 1.2, newer Firefox and Mozilla, CSS3
	obj.style.opacity = opacity/100;
}

var ddimgtooltip={

	tiparray:function(){
		var tooltips=[]
		//define each tooltip below: tooltip[inc]=['path_to_image', 'optional desc', optional_CSS_object]
		//For desc parameter, backslash any special characters inside your text such as apotrophes ('). Example: "I\'m the king of the world"
		//For CSS object, follow the syntax: {property1:"cssvalue1", property2:"cssvalue2", etc}


		tooltips[0]=["http://www.btcworld.it/wp-content/uploads/sintercom1.jpg", "Sintercom - www.sintercom.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[1]=["http://www.btcworld.it/wp-content/uploads/apecollection1.jpg", "Apecollection - www.apecollection.com", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[2]=["http://www.btcworld.it/wp-content/uploads/bellunomagazine1.jpg", "Belluno Magazine - www.bellunomagazine.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[3]=["http://www.btcworld.it/wp-content/uploads/gallonetto1.jpg", "Gallonetto - www.gallonetto.com", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[4]=["http://www.btcworld.it/wp-content/uploads/arredomarmi1.jpg", "Arredomarmi - www.arredomarmi.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[5]=["http://www.btcworld.it/wp-content/uploads/superauto21.jpg", "Superauto 2 Feltre - www.sueprauto2.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[6]=["http://www.btcworld.it/wp-content/uploads/faidate1.jpg", "Faidatemodellismo - www.faidatemodellismo.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[7]=["http://www.btcworld.it/wp-content/uploads/eurosic1.jpg", "Eurosic - www.eurosic.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[8]=["http://www.btcworld.it/wp-content/uploads/vebra1.jpg", "Vebra- www.vebra.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[9]=["http://www.btcworld.it/wp-content/uploads/micro1.jpg", "Microsprintrc - www.microsprintrc.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[10]=["http://www.btcworld.it/wp-content/uploads/gruppotonet1.jpg", "Gruppo Tonet - www.gruppotonet.com", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[11]=["http://www.btcworld.it/wp-content/uploads/michele1.jpg", "Michele De Bona - www.micheledebona.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[12]=["http://www.btcworld.it/wp-content/uploads/kandahar1.jpg", "kandahar - www.kandahar.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[13]=["http://www.btcworld.it/wp-content/uploads/chantilly1.jpg", "Chantilly Limana - www.chantillylimana.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[14]=["http://www.btcworld.it/wp-content/uploads/mintor1.jpg", "Mintor motori - www.mintor.net", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[15]=["http://www.btcworld.it/wp-content/uploads/estimo.jpg", "Agenzia EstimoPierobon - www.estimopierobon.com", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[16]=["http://www.btcworld.it/wp-content/uploads/pdb.jpg", "Paolo de Bona srl - www.paolodebona.it", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		tooltips[17]=["http://www.btcworld.it/wp-content/uploads/aurummetal1.jpg", "Aurummetal - www.aurummetal.com", {border:"2px solid #ccc", font:"bold 12px Arial"}]
		
	return tooltips //do not remove/change this line
	}(),

	tooltipoffsets: [20, -30], //additional x and y offset from mouse cursor for tooltips

	//***** NO NEED TO EDIT BEYOND HERE

	tipprefix: 'imgtip', //tooltip ID prefixes


	createtip:function($, tipid, tipinfo){
		if ($('#'+tipid).length==0){ //if this tooltip doesn't exist yet
			return $('<div id="' + tipid + '" class="ddimgtooltip" style="-moz-box-shadow: 10px 10px 60px #000;-webkit-box-shadow: 10px 10px 60px #000;box-shadow: 10px 10px 60px #000;filter:progid:DXImageTransform.Microsoft.glow(Color=#A8F278, Strength=5); " />').html(
				'<div style="text-align:center;"><img id="image' + tipid + '" src="' + tipinfo[0] + '" /></div>'+ ((tipinfo[1])? '<div style="text-align:left; margin-top:5px;">'+tipinfo[1]+'</div>' : '')
				)
			.css(tipinfo[2] || {})
			.appendTo(document.body)
		}
		return null
	},

	positiontooltip:function($, $tooltip, e){
		var x=e.pageX+this.tooltipoffsets[0], y=e.pageY+this.tooltipoffsets[1]
		var tipw=$tooltip.outerWidth(), tiph=$tooltip.outerHeight(), 
		x=(x+tipw>$(document).scrollLeft()+$(window).width())? x-tipw-(ddimgtooltip.tooltipoffsets[0]*2) : x
		y=(y+tiph>$(document).scrollTop()+$(window).height())? $(document).scrollTop()+$(window).height()-tiph-10 : y
		$tooltip.css({left:x, top:y})
	},
	
	showbox:function($, $tooltip, e){

		$tooltip.show()
		this.positiontooltip($, $tooltip, e)
		
		
	},

	hidebox:function($, $tooltip){
		$tooltip.hide()
	},


	init:function(targetselector){
		jQuery(document).ready(function($){
			var tiparray=ddimgtooltip.tiparray
			var $targets=$(targetselector)
			if ($targets.length==0)
				return
			var tipids=[]
			$targets.each(function(){
				var $target=$(this)
				$target.attr('rel').match(/\[(\d+)\]/) //match d of attribute rel="imgtip[d]"
				var tipsuffix=parseInt(RegExp.$1) //get d as integer
				var tipid=this._tipid=ddimgtooltip.tipprefix+tipsuffix //construct this tip's ID value and remember it
				var $tooltip=ddimgtooltip.createtip($, tipid, tiparray[tipsuffix])
				$target.mouseenter(function(e){
					var $tooltip=$("#"+this._tipid)
					ddimgtooltip.showbox($, $tooltip, e)
				})
				$target.mouseleave(function(e){
					var $tooltip=$("#"+this._tipid)
					ddimgtooltip.hidebox($, $tooltip)
				})
				$target.mousemove(function(e){
					var $tooltip=$("#"+this._tipid)
					ddimgtooltip.positiontooltip($, $tooltip, e)
				})
				if ($tooltip){ //add mouseenter to this tooltip (only if event hasn't already been added)
					$tooltip.mouseenter(function(){
						ddimgtooltip.hidebox($, $(this))
					})
				}
			})

		}) //end dom ready
	}
}

//ddimgtooltip.init("targetElementSelector")
ddimgtooltip.init("*[rel^=imgtip]")
