$(document).ready(function(){

$.ajax({
async: false,
type: "GET",
data: "text=1",
dataType: 'text',
timeout: 50000,
error: function(){
                        $('#message').html("error");
},
url: "http://www.pivot-clip.co.jp/VisualArea_Edit/public_html/VisualArea.php",
success: function(data,status){
text = data.text;
msg = data.msg;
error = data.error;

source = data;
kekka = source.split("\n");

                        $('#topimg1').html(kekka[0]);
                        $('#topimg2').html(kekka[1]);
                        $('#topimg3').html(kekka[2]);
                        $('#topimg4').html(kekka[3]);
}
});
                });

