var pic_tool={

	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]=["/p/Diploma1.jpg"]
tooltips[1]=["/p/Office1.jpg"]
tooltips[2]=["/p/Gold_Float.jpg"]
tooltips[3]=["/p/Room_Frame_1.jpg"]
tooltips[4]=["/p/Room_Frame_1a.jpg"]
tooltips[5]=["/p/Contemporary1.jpg"]
tooltips[6]=["/p/Classic1.jpg"]
tooltips[7]=["/p/Shadow1.jpg"]
tooltips[8]=["/p/Hallway1.jpg"]
tooltips[9]=["/p/Bedroom1.jpg"]
tooltips[10]=["/p/Livingroom1.jpg"]
tooltips[11]=["/p/Fineart1.jpg"]
tooltips[12]=["/p/Collage1.jpg"]
tooltips[13]=["/p/Digital1.jpg"]
tooltips[14]=["/p/Digital2.jpg"]
tooltips[15]=["/p/Digital3.jpg"]
tooltips[16]=["/p/Lisa_Rejowski.jpg"]
tooltips[17]=["/p/Girl1.jpg"]
tooltips[18]=["/p/Painting1.jpg"]
tooltips[19]=["/p/Baby1.jpg"]
tooltips[20]=["/p/Port1.jpg"]
tooltips[21]=["/p/Port2.jpg"]
tooltips[22]=["/p/Port3.jpg"]
tooltips[23]=["/p/Port4.jpg"]
tooltips[24]=["/p/Port5.jpg"]
tooltips[25]=["/p/Port6.jpg"]
tooltips[26]=["/p/Port7.jpg"]
tooltips[27]=["/p/Port8.jpg"]
tooltips[28]=["/p/Port9.jpg"]
tooltips[29]=["/p/Port10.jpg"]
tooltips[30]=["/p/Port11.jpg"]
tooltips[31]=["/p/Port12.jpg"]
tooltips[32]=["/p/Port13.jpg"]
tooltips[33]=["/p/Port14.jpg"]
tooltips[34]=["/p/Port15.jpg"]
tooltips[35]=["/p/Store_Front1.jpg"]
tooltips[36]=["/p/Coupon4.jpg"]


tooltips[100]=["/p/facebook_pic.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="pic_tool" />').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-(pic_tool.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=pic_tool.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=pic_tool.tipprefix+tipsuffix //construct this tip's ID value and remember it
				var $tooltip=pic_tool.createtip($, tipid, tiparray[tipsuffix])
				$target.mouseenter(function(e){
					var $tooltip=$("#"+this._tipid)
					pic_tool.showbox($, $tooltip, e)
				})
				$target.mouseleave(function(e){
					var $tooltip=$("#"+this._tipid)
					pic_tool.hidebox($, $tooltip)
				})
				$target.mousemove(function(e){
					var $tooltip=$("#"+this._tipid)
					pic_tool.positiontooltip($, $tooltip, e)
				})
				if ($tooltip){ //add mouseenter to this tooltip (only if event hasn't already been added)
					$tooltip.mouseenter(function(){
						pic_tool.hidebox($, $(this))
					})
				}
			})

		}) //end dom ready
	}
}

//pic_tool.init("targetElementSelector")
pic_tool.init("*[rel^=imgtip]")
