/* 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]=["spacer.gif", "Travel Outlook's skilled reservations team are trained to maximize rate on every call by highlighting the appropriate amenities and upselling at every opportunity.", {width:"200px"}]
		tooltips[1]=["spacer.gif", "On average, we convert over 70% of all qualified reservation calls that we receive. Our clients have experienced double or even triple the conversion of incoming reservation calls after switching to our service.", {width:"200px"}]
		tooltips[2]=["spacer.gif", "All of our staff receive extensive training on your specific hotel, which results in consistent, professional salesmanship and customer service on every call we take for you.", {width:"200px"}]
		tooltips[3]=["spacer.gif", "Our most popular billing option charges you only on actual consumed rooms that we book for you; no additional charges at all.  We also offer to match any competitor's bid while still maintaining our gaurantee on improved performance.", {width:"200px"}]
		tooltips[4]=["spacer.gif", "When you have Travel Outlook working for you, your front office staff can focus on what is most important, your in-house guests.  Many of our clients experience significant increases in their hotel review rankings (like TripAdvisor) just by now being able to effectively service their in-house guest's needs.", {width:"200px"}]
		tooltips[5]=["spacer.gif", "We take the time to understand your property and your marketing and brand message, and we effectively convey it to your clients when they call for reservations.", {width:"200px"}]		
		tooltips[6]=["spacer.gif", "Bishop's Lodge Ranch Resort and Spa, Santa Fe, NM - Travel Outlook partner since 2008", {width:"200px"}]		
		tooltips[7]=["spacer.gif", "Heathman Lodge, Vancouver, WA - Travel Outlook partner since 2010", {width:"200px"}]		
		tooltips[8]=["spacer.gif", "Hotel Andaluz, Albuquerque, NM - Travel Outlook partner since 2009", {width:"200px"}]		
		tooltips[9]=["spacer.gif", "The Old Santa Fe Inn, Santa Fe, NM - Travel Outlook partner since 2001", {width:"200px"}]
		tooltips[10]=["spacer.gif", "Hotel Santa Fe, Santa Fe, NM - Travel Outlook partner since 2008", {width:"200px"}]			
		tooltips[11]=["spacer.gif", "Fort Marcy Hotel Suites, Santa Fe, NM - Travel Outlook partner since 2005", {width:"200px"}]				
			
		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"></div>'
				+ ((tipinfo[1])? '<div style="text-align:left; margin-top:0px">'+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]")
