var imageData = [
	{
		src : 'images/index_ph001.jpg',
		alt : 'Shinka2020'
	},
	{
		src : 'images/index_ph002.jpg',
		alt : '価値創造のベストパートナーへ'
	},
	{
		src : 'images/index_ph003.jpg',
		alt : 'お見舞い申し上げます。'
	},
	{
		src : 'images/index_ph004.jpg',
		alt : 'Shinka2020'
	},
	{
		src : 'images/index_ph005.jpg',
		alt : '価値創造のベストパートナーへ'
	},
        {
		src : 'images/index_ph006.jpg',
		alt : 'お見舞い申し上げます。'
	},
        {
		src : 'images/index_ph007.jpg',
		alt : 'Shinka2020'
	}
        
];

function randomTopImage (){
	if(!document.getElementById || !document.getElementById('photo')) return;
	var el = document.getElementById('photo');
	var n = Math.floor(Math.random() * imageData.length);

	el.src = imageData[n].src;
	el.alt = imageData[n].alt;
}

