var pickupData = [
	{
		href:	'http://www2.nissan.co.jp/EVENT/TAX/index.html?ID=11',
		target:	'_blank',
		src:	'SRC/IMAGES/harunavi.jpg',
		alt:	'今なら「春ナビ割」実施中！',
		txt:	'今なら「春ナビ割」実施中！'
	},
	{
		href:	'/EVENT/K/index.html?ID=01',
		target:	'_blank',
		src:	'SRC/IMAGES/kei.jpg',
		alt:	'「選んで安心　日産の軽」',
		txt:	'選んで安心 日産の軽'
	},
	{
		href:	'/PREMIUMFACTORY/index.html?id=09',
		target:	'_blank',
		src:	'SRC/IMAGES/pcp.gif',
		alt:	'NISSAN PREMIUM FACTORY',
		txt:	'日産の名工が<br />クルマ作りへの思いを語る'
	}
];

function setPickup(){
	var html = '';
	var pickupLength = pickupData.length;
	for(i = 0; i < pickupLength; i++){
		html += '<div><a href="' + pickupData[i].href + '" target="' + pickupData[i].target + '"><img src="' + pickupData[i].src + '" style="border: 0; vertical-align: bottom;" alt="' + pickupData[i].alt + '" border="0" /><p>' + pickupData[i].txt + '</p></a></div>';
	}
	document.write(html);
}