/* Image w/ description tooltip v2.0

* Created: April 23rd, 2010. This notice must stay intact for usage 

* Author: Dynamic Drive at http://www.dynamicdrive.com/

* Visit http://www.dynamicdrive.com/ for full source code

*/





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]=["images/AERO-MODULAR-TECHNOLOGY.jpg", "Here is a red balloon<br /> on a white background", {background:"#FFFFFF", color:"black", border:"5px ridge darkblue"}]

		tooltips[0]=["images/tecnologias/AERO-MODULAR-TECHNOLOGY.jpg"]
		tooltips[1]=["images/tecnologias/WOOFER_TECHNOLOGY.jpg"] 
		tooltips[2]=["images/tecnologias/CORTEX-SYSTEM.jpg"] 
		tooltips[3]=["images/tecnologias/GT-TECHNOLOGY.jpg"]
		tooltips[4]=["images/tecnologias/SMART-GRIP.jpg"] 
		tooltips[5]=["images/tecnologias/POWER-SHAFT.jpg"] 
		tooltips[6]=["images/tecnologias/XTRA-SWEETSPOT-TECHNOLOGY.jpg"] 
		tooltips[7]=["images/tecnologias/LIQUIDMETAL.jpg"]
		tooltips[8]=["images/tecnologias/FLEXPOINT.jpg"]
		tooltips[9]=["images/tecnologias/MICROGEL.jpg"]
		tooltips[10]=["images/tecnologias/TEFLON.jpg"]
		tooltips[11]=["images/tecnologias/YOUTEK.jpg"]
		tooltips[12]=["images/tecnologias/PROTECT_SYSTEM.jpg"]
		tooltips[13]=["images/tecnologias/METALLIX.jpg"]
		tooltips[14]=["images/tecnologias/HOTMELT.jpg"]
		tooltips[15]=["images/tecnologias/AEROGEL.jpg"]
		tooltips[16]=["images/tecnologias/M-FIL.jpg"]
		tooltips[17]=["images/tecnologias/4D-BRAIDED.jpg"]
		tooltips[18]=["images/tecnologias/EXO3.jpg"]
		tooltips[19]=["images/tecnologias/O-PORTS.jpg"]
		tooltips[20]=["images/tecnologias/O3-SPEEDPORTS.jpg"]
		tooltips[21]=["images/tecnologias/caracteristicas/area_raqueta.jpg"]
		tooltips[22]=["images/tecnologias/caracteristicas/balance_raqueta.jpg"]
		tooltips[23]=["images/tecnologias/caracteristicas/longitud_raqueta.jpg"]
		tooltips[24]=["images/tecnologias/caracteristicas/patron_raqueta.jpg"]
		tooltips[25]=["images/tecnologias/caracteristicas/perfil_marco_raqueta.jpg"]
		tooltips[26]=["images/tecnologias/caracteristicas/peso_raqueta.jpg"]
		tooltips[27]=["images/tecnologias/caracteristicas/rigidez_raqueta.jpg"]
		tooltips[28]=["images/tecnologias/caracteristicas/swing.jpg"]
		tooltips[29]=["images/tecnologias/caracteristicas/tecnologia_raqueta.jpg"]
		tooltips[30]=["images/tecnologias/NCODE.jpg"]
		tooltips[31]=["images/tecnologias/KONTOUR_YOKE.jpg"]
		tooltips[32]=["images/tecnologias/KONPACT_CENTER.jpg"]
		tooltips[33]=["images/tecnologias/KONNECTOR.jpg"]
		tooltips[34]=["images/tecnologias/KAROPHITE_BLACK.jpg"]
		tooltips[35]=["images/tecnologias/FX-TECHNOLOGY.jpg"]
		tooltips[36]=["images/tecnologias/BLX.jpg"]
		tooltips[37]=["images/tecnologias/NANO_TECHOLOGY.jpg"]
		tooltips[38]=["images/tecnologias/CARBON_XTREM.jpg"]
		tooltips[39]=["images/tecnologias/ELLIPTIC_GEOMETRY.jpg"]
		tooltips[40]=["images/tecnologias/MAGNETIC_SPEED.jpg"]
		tooltips[41]=["images/tecnologias/ESTABILITY_SYSTEM.jpg"]
		tooltips[42]=["images/tecnologias/d3o.jpg"]
		tooltips[43]=["images/tecnologias/BLACK_GRANITE.jpg"]
		tooltips[44]=["images/tecnologias/AIR_CARBON.jpg"]
		tooltips[500]=["images/tecnologias/Y-TECHNOLOGY.jpg"]

		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" />').html(

				'<div style="text-align:center"><img 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]")