$(document).ready(function() {
	$("#passport_in").css({ visibility:"hidden"});
	$(".passport_in").bind("mouseover focus", function(e){
		if($(this).children("img").attr("src").lastIndexOf("_u.gif")!=-1) {
			var tmpsrc = $(this).children("img").attr("src");
			tmpsrc = tmpsrc.substring(0, tmpsrc.indexOf("_u.gif"));
			tmpsrc = tmpsrc + "_o.gif";
			$(this).children("img").attr("src", tmpsrc);
		}
		return false;
	}).bind("mouseout blur", function(e){
		if($(this).children("img").attr("src").lastIndexOf("_o.gif")!=-1) {
			var tmpsrc = $(this).children("img").attr("src");
			tmpsrc = tmpsrc.substring(0, tmpsrc.indexOf("_o.gif"));
			tmpsrc = tmpsrc + "_u.gif";
			$(this).children("img").attr("src", tmpsrc);
		}
		return false;
	});
	$(".passport_out").bind("click", function(e){
		$(this).fadeOut(150);
		$("#passport_in").css({ visibility:"visible"});
		return false;
	});
});