/* 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[1]=["../2/wp-content/uploads/tooltips/letterhead.jpg"]
tooltips[2]=["../2/wp-content/uploads/tooltips/envelopes.jpg"]
tooltips[3]=["../2/wp-content/uploads/tooltips/businesscards.jpg"]
tooltips[4]=["../2/wp-content/uploads/tooltips/brochures.jpg"]
tooltips[5]=["../2/wp-content/uploads/tooltips/manuals.jpg"]
tooltips[6]=["../2/wp-content/uploads/tooltips/newsletters.jpg"]
tooltips[7]=["../2/wp-content/uploads/tooltips/pocketfolders.jpg"]
tooltips[8]=["../2/wp-content/uploads/tooltips/announcements.jpg"]
tooltips[9]=["../2/wp-content/uploads/tooltips/packaging.jpg"]
tooltips[10]=["../2/wp-content/uploads/tooltips/banners.jpg"]
tooltips[11]=["../2/wp-content/uploads/tooltips/posters.jpg"]
tooltips[12]=["../2/wp-content/uploads/tooltips/pos.jpg"]
tooltips[13]=["../2/wp-content/uploads/tooltips/screenprinting.jpg"]
tooltips[14]=["../2/wp-content/uploads/tooltips/offset.jpg"]
tooltips[15]=["../2/wp-content/uploads/tooltips/cddvd.jpg"]
tooltips[16]=["../2/wp-content/uploads/tooltips/plasticcards.jpg"]
tooltips[17]=["../2/wp-content/uploads/tooltips/binders.jpg"]
tooltips[18]=["../2/wp-content/uploads/tooltips/specialevents.jpg"]
tooltips[19]=["../2/wp-content/uploads/tooltips/plasticbag.jpg"]
tooltips[20]=["../2/wp-content/uploads/tooltips/cups.jpg"]
tooltips[21]=["../2/wp-content/uploads/tooltips/embroideredapparel.jpg"]
tooltips[22]=["../2/wp-content/uploads/tooltips/badges.jpg"]
tooltips[23]=["../2/wp-content/uploads/tooltips/caps.jpg"]
tooltips[24]=["../2/wp-content/uploads/tooltips/clocks.jpg"]
tooltips[25]=["../2/wp-content/uploads/tooltips/compaccessories.jpg"]
tooltips[26]=["../2/wp-content/uploads/tooltips/decals.jpg"]
tooltips[27]=["../2/wp-content/uploads/tooltips/deskaccessories.jpg"]
tooltips[28]=["../2/wp-content/uploads/tooltips/flagbanner.jpg"]
tooltips[29]=["../2/wp-content/uploads/tooltips/pens.jpg"]
tooltips[30]=["../2/wp-content/uploads/tooltips/golfitems.jpg"]
tooltips[31]=["../2/wp-content/uploads/tooltips/keytags.jpg"]
tooltips[32]=["../2/wp-content/uploads/tooltips/stressrelievers.jpg"]
tooltips[33]=["../2/wp-content/uploads/tooltips/novelties.jpg"]
tooltips[34]=["../2/wp-content/uploads/tooltips/napkinsmatches.jpg"]
tooltips[35]=["../2/wp-content/uploads/tooltips/signsdisplays.jpg"]
tooltips[36]=["../2/wp-content/uploads/tooltips/portfolios.jpg"]
tooltips[37]=["../2/wp-content/uploads/tooltips/tshirts.jpg"]
tooltips[38]=["../2/wp-content/uploads/tooltips/awards.jpg"]
tooltips[39]=["../2/wp-content/uploads/tooltips/printdesign.jpg"]
tooltips[40]=["../2/wp-content/uploads/tooltips/directmail.jpg"]
tooltips[41]=["../2/wp-content/uploads/tooltips/packagedesign.jpg"]
tooltips[42]=["../2/wp-content/uploads/tooltips/uniquecards.jpg"]
tooltips[43]=["../2/wp-content/uploads/tooltips/logos.jpg"]
tooltips[44]=["../2/wp-content/uploads/tooltips/salespackages.jpg"]
tooltips[45]=["../2/wp-content/uploads/tooltips/clothing.jpg"]
tooltips[46]=["../2/wp-content/uploads/tooltips/imagedev.jpg"]
tooltips[47]=["../2/wp-content/uploads/tooltips/specialpromo.jpg"]
tooltips[48]=["../2/wp-content/uploads/tooltips/postcard.jpg"]
tooltips[49]=["../2/wp-content/uploads/tooltips/catalogmagazine.jpg"]
tooltips[50]=["../2/wp-content/uploads/tooltips/dvdpackaging.jpg"]
tooltips[51]=["../2/wp-content/uploads/tooltips/corporatepackages.jpg"]
tooltips[52]=["../2/wp-content/uploads/tooltips/corporateliterature.jpg"]
tooltips[53]=["../2/wp-content/uploads/tooltips/marketingkits.jpg"]
tooltips[54]=["../2/wp-content/uploads/tooltips/addesign.jpg"]
tooltips[55]=["../2/wp-content/uploads/tooltips/rackcards.jpg"]
tooltips[56]=["../2/wp-content/uploads/tooltips/brochuredesign.jpg"]
tooltips[57]=["../2/wp-content/uploads/tooltips/bannerdesign.jpg"]
tooltips[58]=["../2/wp-content/uploads/tooltips/webdesign.jpg"]
tooltips[59]=["../2/wp-content/uploads/tooltips/Tourist-Promotions.jpg"]
tooltips[60]=["../2/wp-content/uploads/tooltips/Referral.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]")
