function jsonLoad() {
$.ajax({
type : 'GET',
url : 'topics_088_test_movie.json',
dataType: 'json',
cache : false,
timeout : 10000
})
.done(function(data) {
// 成功
thumnailURL = data.image;
$('.thumnail').attr('src', thumnailURL);
})
.fail(function(data) {
// 失敗
alert('false!');
})
}