 
$(document).ready(function() {
  var highlighted = "";
  var column = 3;

  var positionTooltip = function(event) {
    var tPosX = event.pageX;
    var tPosY = event.pageY+20;
    $('div.tooltip').css({top: tPosY, left: tPosX});
  };

  var showTooltip = function(event) {
    $('div.tooltip').remove();
    $('<div class="tooltip">' + $(this).attr('tip') + '</div>').appendTo('body');
    positionTooltip(event);
  };

  var hideTooltip = function() {
    $('div.tooltip').remove();
  };

  $('.verify_mark')
  .hover(showTooltip, hideTooltip)
  .mousemove(positionTooltip);
  
  
})



$(document).ready(function(){
	$("#input_box").each(function(){
		this.value = this.title;
			$("#input_box").css({color:"#cccccc"});
	});
	$("#input_box").focus(function(){
    	if(this.value == this.title) {
	   		this.value = '';
	   		$("#input_box").css({color:"#000000"});
	   }
	});
	$("#input_box").blur(function(){
		if(this.value == '') {
			this.value = this.title;
			$("#input_box").css({color:"#cccccc"});
		}
	});
})
