/**
 * オブジェクトリソースを管理するオブジェクト
 * 
 * @author Yugo Kimura
 * @version 1.0
 */
var R = {
	ajax : {
		json : {
			timeout: 5000,
			contentType : 'application/json; charset=utf-8',
			type: 'post',
			url: "screen/Screen.json",
			dataType : 'json',
			cache: true,
			data : '',
			success : null
		}
	},
	msg : {
		addInput_default : 'ご希望のアドレスを入力'
	}
}

