/* 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]=["/wp-content/themes/katy4/img/myspace.png", "Odwied&#378 oficjalne konto Katy Perry na MySpace. Dowiesz si&#281 z niego du&#380o ciekawych informacji o piosenkarce."]
		tooltips[1]=["/wp-content/themes/katy4/img/youtube.png", "Poogladaj najnowsze filmiki dodane przez Katy na jej oficjalnym kanale YouTube. Serdecznie zapraszam!"]
		tooltips[2]=["/wp-content/themes/katy4/img/facebook.png", "Nie by&#322e&#347 jeszcze na facebook'u Katy Perry? Na co jeszcze czekasz? Wejd&#378 i poczytaj najnowsze wpisy"]
		tooltips[3]=["/wp-content/themes/katy4/img/twitterscan.png", "Zdecydowanie najlepsze &#378r&#243d&#322o informacji co aktulanie si&#281 dzieje u Katy. Wokalsitka ci&#261gle pisze na swoim oficjalnym koncie na Twitterze. Wpadnij i j&#261 followuj!"]
		tooltips[4]=["/wp-content/themes/katy4/img/offical.png", "Oficjalna strona Katy Perry. Wpadnij, bo naprawd&#281 warto!"]
		tooltips[5]=["/wp-content/themes/katy4/img/scanfanlist.png", "Jeste&#347 fanem Katy Perry? S&#322uchasz jej muzyki? Lubisz j&#261 jako gwiazd&#281? Zapisz si&#281 koniecznie do polskiej listy fan&#243w Katy Perry. Zajmi&#281 to Ci par&#281 sekund, a dzi&#281ki temu mo&#380e zbierzemy tam ca&#322&#261 rzesze fan&#243w Katy. Zapraszam!"]
		tooltips[6]=["/wp-content/themes/katy4/img/scangraphic.png", "Je&#380eli chcesz pobra&#263 grafik&#281 z Katy Perry to doskona&#322e miejsce dla Ciebie! Wpadnij do Graphic Center. Zapraszam!"]
		tooltips[7]=["/wp-content/themes/katy4/img/scangaleria.png", "Zapraszam do galerii gdzie znajdziecie ponad 3 tysi&#261ce zdj&#281&#263 Katy Perry. Potrzebne Ci sesja zdj&#281ciowa do grafiki? A mo&#380e chcesz zobaczy&#263 jak Katy wygl&#261da&#322a na ostatniej gali? Musisz tam wpa&#347&#263!"]

		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]")
