function thumb_image(me) {
	var img = $(me).find('img').attr('src').split('/').pop();
	return '<img src="M/' + img + '" />';
}
function thumb_click(me) {
	document.getElementById('pic').innerHTML = thumb_image(me);
}
$(document).ready(function() {
	var o = ['<div style="position:absolute;top:0;left:-50px;height:5px;width:5px;overflow:hidden;">'];
	$('.thumb').each(function() { o[o.length]=thumb_image(this); });
	document.getElementById('pic').innerHTML = o[1];
	o[o.length]='</div>';
	$('body').append(o.join(''));
});


