(function($){
	$(function(){

	
		$('.textPop_img').css('width', '120px');
		
		$('.textPop').each(function(i,e){
			
			var divWrap = $( document.createElement('div') );
			divWrap.attr('class', 'textPop_wrap');
			divWrap.css('display','none');
			divWrap.css('position','absolute');
			
			$('.textPop_img, .textPop_text', e).wrapAll(divWrap);
			
			$(e).mouseover(function(evt){
				$('.textPop_wrap', e).css('display','block');
				
				pos = $('.textPop_origtext', e).position();
				
				var left = pos.left;
				var top = pos.top;
				
				if($.browser.msie && $.browser.version>7){
					top = pos.top+5;
				}else{
					top = pos.top+14;	
				}
				
				$('.textPop_wrap', e).css('left', left);
				$('.textPop_wrap', e).css('top', top);
				
			});
			
			$(e).mouseout(function(evt){
				$('.textPop_wrap', e).css('display','none');
			});
					
		});
		
	});	
})(jQuery);
