jQuery(document).ready(function(){

$('#postcardthumb img').click(function(){
	$('#postcard img').attr('src',$(this).attr('src').replace('th_',''));
});

});