/**************************************************
 * 定義
 **************************************************/
var LIST1_WIDTH = 74;
function Item(title, body, image, price, url, dlurl) {
	this.title	= title;
	this.body	= body;
	this.image	= image;
	this.price	= price;
	this.url	= url;
	this.dlurl	= dlurl;
}

// 画面右の一番上にあるリンクリストＩＤ
/*
var listArray = {
		listRightTop1:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	100,	"/detail?1",		"/detail?1"),
		listRightTop2:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	110,	"/detail?2",		"/detail?2"),
		listRightTop3:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	120,	"/detail?3",		"/detail?3"),
		listRightTop4:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	130,	"/detail?4",		"/detail?4"),
		listRightTop5:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	140,	"/detail?5",		"/detail?5"),
		listRightTop6:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	150,	"/detail?6",		"/detail?6"),
		listRightTop7:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	160,	"/detail?7",		"/detail?7"),
		listRightTop8:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	170,	"/detail?8",		"/detail?8"),
		listRightTop9:	new Item("lrt:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	180,	"/detail?9",		"/detail?9"),

		listRightMiddle1:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	100,	"/detail?a",	"/detail?a"),
		listRightMiddle2:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	110,	"/detail?b",	"/detail?b"),
		listRightMiddle3:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	120,	"/detail?c",	"/detail?c"),
		listRightMiddle4:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	130,	"/detail?d",	"/detail?d"),
		listRightMiddle5:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	140,	"/detail?e",	"/detail?e"),
		listRightMiddle6:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	150,	"/detail?f",	"/detail?f"),
		listRightMiddle7:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	160,	"/detail?g",	"/detail?g"),
		listRightMiddle8:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	170,	"/detail?h",	"/detail?h"),
		listRightMiddle9:	new Item("lrm1:サンプルタイトル",	"サンプルテキスト",	"sample.jpg",	180,	"/detail?i",	"/detail?i")
};
*/

