$(function(){

    $.getJSON("data.php", {id : "1"}, function(json){
    //$.getJSON("news/data.json", function(json){

        $.each(json, function(){
            $.each(this, function(){
		if($(this).length > 0){
                	$("#news_area").setTemplateURL("top_js/news.tpl");
                	$("#news_area").processTemplate($(this));
		}
            });
        });
    });
    
    $.getJSON("data.php", {id : "2"}, function(json){
    //$.getJSON("stay/data.json", function(json){

        $.each(json, function(){
            $.each(this, function(){
		if($(this).length > 0){
                	$("#stay_area").setTemplateURL("top_js/stay.tpl");
                	$("#stay_area").processTemplate($(this));
		}
            });
        });
    });

});

