﻿function activeVerifyCode(vcPath){
	$(".verifyCode").focus(function(){
		var pos = $(this).position();
		$("<img />")
			.addClass("verifyCodeImage")
			.attr("src",vcPath + "?t=" + Math.round(Math.random()*1000))
			.css({
				"position": "absolute",
				"left": pos.left + $(this).outerWidth() +"px",
				"top": pos.top +"px"
			})
			.insertAfter(this);
	}).blur(function(){
		$(".verifyCodeImage").remove();
	})
}
