var pickupData = [
	{
		href:	'http://www2.nissan.co.jp/EVENT/TAX/index.html',
		target:	'_blank',
		src:	'SRC/IMAGES/tax.jpg',
		alt:	'エコカー減税まだまだ継続中',
		txt:	'エコカー減税<br />まだまだ継続中'
	},
	{
		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);
}
