/* 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]=["http://www.miescuelita.org/images/brief_bio.jpg","Karen is a veteran journalist who joined CBS 11 News in 1995. Prior to<br> that, she was an anchor and reporter at CBS affiliate WTVT-TV in Tampa,<br> KRBK-TV in Sacramento and KCEN-TV in Waco. Karen is a graduate <br>of the University of Texas at Arlington and is a member of the UTA Alumni<br> Association, as well as the National Association of Hispanic Journalists.<br><br>   In 2003, Karen received UTA\'s - Distinguished Alumni Service Award.<br>  She has received numerous awards for her journalistic work, including<br> regional Emmys, Press Club of Dallas Katie Awards and the<br> Association of Women Journalists\' Vivian J. Castleberry Award.<br>  She was also part of the CBS 11 team honored by the Radio-Television<br> News Directors Association with a 2006 Edward R. Murrow Award<br> for Overall Excellence.  In addition, she has been honored<br> by numerous charitable and civic organizations including Mi Escuelita, <br>Cook Children\'s Medical Center, and the Baylor Sammons Breast Center.", {background:"#FFFFFF", color:"black", border:"5px ridge darkblue"}]
		tooltips[1]=["http://www.miescuelita.org/images/brief_bio.jpg", "Born and raised in SC, Kellie Rasberry had aspirations of becoming an<br> actress, but the owner of a local radio station saw her at a talent convention<br> and thought she had the perfect personality for radio. She went on to<br> host her own morning show and then, after a friend saw an ad in a <br>trade magazine about working with some guy named Kidd, she <br>auditioned for the job and got it. <br><br>So Kellie moved to the big city in May of 1994 to join the <br>Kidd Kraddick show, thus beginning the Kraddick/Rasberry Chemistry.<br>  Since working with KKITM, Kellie has won several Favorite Female<br> Radio Personality of the Year awards, had a small part in the made-for-TV<br> movie, Holiday In Your Heart, starring LeAnn Rimes, co-hosted the <br>videocast of the Blockbuster Entertainment Awards, and co-hosted<br> an episode of Live! With Regis during the Women of Radio week.<br>  Kellie is the proud mother of Emma Kelly, born on October 19, 2006", {background:"#FFFFFF", color:"black", border:"5px ridge darkblue"}]
		tooltips[2]=["http://www.miescuelita.org/images/brief_bio.jpg", "With a focus on the innovation and integration of the policy, business<br> and social sectors, Kyle Zimmer’s commitment to innovation has earned<br> her a reputation as a social sector leader.  As co-founder and president of <br>First Books, an award winning charity foundation, Kyle has overseen <br>the distribution of over 70 million books to children in thousands<br> of communities in the United States since 1992.  She was also <br>named 2007 Outstanding Social Entrepreneur of the Year in<br> the United States by the Geneva-based Schwab Foundation for <br>Social Entrepreneurship. In 2008, Kyle was named the first <br>ever American Marketing Association Nonprofit Marketer of the Year and<br> in 2009, Kyle was honored as a Carle Honors Angel Award recipient.<br> She is currently a member of the World Economic Forum’s Global<br> Agenda Council on Social Entrepreneurship.  Her engaging<br> style and inspiring story make Kyle an entertaining speaker with a mission.", {background:"#FFFFFF", color:"black", border:"5px ridge darkblue"}]
		tooltips[3]=["../dynamicindex17/bridge.gif", "Bridge to somewhere.", {background:"white", font:"bold 12px Arial"}]

		return tooltips //do not remove/change this line
	}(),

	tooltipoffsets: [20, -100], //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]")