var Contents = {

	/** items */
	pictures:{
		p1:"/resources/JPN/images/rootIndex/rootIndex_text00.jpg"
	},

	texts:{
		p1:""
	},

	/** getImgElement */
	getImgElement:function() {
		if( !!arguments[0] ){
			var url = this.pictures[ arguments[0] ];
			document.write(
				'<img src="'+ this.pictures[ arguments[0] ] +'" alt="'+ this.texts[ arguments[0] ] +'" />'
			);
		}
	},

	getTextNode:function() {
		if( !!arguments[0] ){
			document.write(
				this.texts[ arguments[0] ]
			);
		}
	}
};
