$(function() {
$(".title").append('<em></em>')
$(".image_s a").click(function() {
var Path01 = $(this).attr("href");
var Alt01 = $(this).attr("title");
$(".image01").attr({ src: Path01, alt: Alt01 });
$(".title em").html(" (" + Alt01 + ")");
return false;
});
});
