$(function(){
	var aels = $("td.content img").parent("a");
	var aels_size = aels.size();
	var _img = new Array(aels_size);
	for (var i=0; i<aels_size; i++) {
		_img[i] = document.createElement("img");
		_img[i].src = aels.get(i).href;
		_img[i].style.display = "none";
		document.body.appendChild(_img[i]);
		if (!window.ActiveXObject)
			aels.get(i).setAttribute( "onclick", "return aels_click(this);" );
		else
			aels.get(i).setAttribute("onclick", aels_click);
	}
});
function aels_click(_this) {
	if (_this) var el = _this;
	else var el = this;
	show_pic(el.href,el.firstChild.alt?el.firstChild.alt:el.firstChild.title);
	return false;
}
