function hoverPopup() {
	$('.hoverPopup').hover(
		function() {
		this.tip = this.title;
		$(this).append(
			'<div class="hoverPopupWrapper">'
				+'<div class="hoverPopupTop"></div>'
				+'<div class="hoverPopupMid">'
					+'<div class="hoverPopupContent">'
						+this.tip
					+'</div>'
				+'</div>'
				+'<div class="hoverPopupBtm"></div>'
			+'</div>'
		);
		$("#home-row2-container").css("z-index", "-10");
		this.title = "";
		this.width = $(this).width();
		$(this).find('.hoverPopupWrapper').css({left:this.width-50})
		$('.hoverPopupWrapper').fadeIn(300);
		$(document).pngFix();
	},
	function() {
		$('.hoverPopupWrapper').fadeOut(100);
		$("#home-row2-container").css("z-index", "0");
		$(this).children().remove();
			this.title = this.tip;
		}
	);
	
	
}
