function tooltipGallery() {
	$('.gallery .tooltip').css("display", "none");
		
			$('.gallery div.border-img7').bind("mouseenter",function(){
				$(this).mousemove(function (e) {
				
					$that = $(this).find('.tooltip');
					var thatH = parseInt($that.height());
					
					var thatLeft = e.clientX - 230-10;
					var thatTop = e.clientY - thatH + $(window).scrollTop()-10;

					
					var styles = {
						'display': 'block',
						'left'	 : thatLeft,
						'top'	 : thatTop
					}
					$that.css(styles);
					
				});
			}).bind("mouseleave",function(){
				$(this).find('.tooltip').css("display", "none");
			});
			
}

$(document).ready(function(){
	tooltipGallery();
}); 
