/*TOOLTIP*/
function tooltip(){
	/*MOUSE OVER*/
	$('.tooltip').mouseover(function(){
		$('body').append('<img src=' + $(this).attr('image') + ' alt="' + $(this).attr('image') + '" width="107" height="23" class="view_tooltip" />');
	})
	
	$('.tooltip').mousemove(function(e){
		if(!$('.view_tooltip').is(':visible')){
			$('body').append('<img src=' + $(this).attr('image') + ' alt="' + $(this).attr('image') + '" width="107" height="23" class="view_tooltip" />');
		}
		
		$('.view_tooltip').css({top: e.pageY + 'px', left: e.pageX + 'px'});
	})
	
	/*MOUSE OUT*/
	$('.tooltip').mouseout(function(){
		$('.view_tooltip').remove();
	})
	
	/*CLICK*/
	$('.tooltip').click(function(){
		return true;
	})
}

$(function(){
	tooltip();
})