$(document).ready(function() {
	$("span.adrs").text("e-m");
	$("span.adrs").text($("span.adrs").text() + "ail");
	
	$("span.first").each(function() {
		$(this).text($(this).attr("title").replace(/ii/gi, ".") + String.fromCharCode((120 + 8) / 2));
	});
	
	$("span.second").each(function() {
		$(this).text($(this).attr("title").replace(/ii/gi, "."));
	});

	if($("*").index($("div.zoom")[0]) != -1)
	{
		$("div.zoom").height($("div.zoom").parent().children("img").height());
	}
});
