function showTooltip(e){
	hideTooltip();
	var newDiv = e.next('.tooltip').clone();
	$('body').append(newDiv);
	newDiv.css({left:parseInt(e.offset().left + 30) + "px", top:parseInt(e.offset().top - 3) + "px", position:"absolute"}).fadeIn();
};
function hideTooltip(){
	$('body > .tooltip').fadeOut().remove();
};
$(function(){
	$('.icon img').bind("mouseenter",function(){
		var image = $(this);
		showTooltip(image);
	})
	$('.icon img').bind("mouseleave",function(){
		hideTooltip();
	});
	$('label').bind("mouseenter",function(){
		var image = $(this).parent().next('.input').children('.icon').children('img');
		showTooltip(image);
	});
	$('label').bind("mouseleave",function(){
		hideTooltip();
	});
	/*
	$('input, select, textarea').focus(function(){
		var image = $(this).parent().next('.icon').children('img');
		showTooltip(image);
	});
	$('input, select, textarea').blur(function(){
		hideTooltip();
	});
	*/
});
