jQuery.fn.jBalloon = function(){
	var target = this;
	jQuery(target).hover(
		function(){
			jQuery("body").prepend('<div id="' + jQuery(this).attr("id") + '_balloon"><p>' + jQuery(this).children('img').attr("alt") + '</p></div>').children("div:eq(0)").css({
				position: "absolute",
				top: (window.navigator.userAgent.match(/msie\s(6|7)/i)) ? jQuery(this).offset().top + 50 : jQuery(this).offset().top,
				left: jQuery(this).offset().left,
				zIndex: 100,
				background: "url(../../img/bt.png) no-repeat top",
				width: 200,
				height: 150,
				textAlign: "left"
			}).children().css({
				margin: "50px 20px 0 20px",
				width: 150,
				fontSize: "130%"
			});
		},
		function(){
			jQuery('body div#' +  jQuery(this).attr("id") + '_balloon').remove();
		}
	);
}




