var imageData = [
	{
		src : 'images/index_ph001.jpg',
		alt : '価値創造のベストパートナーへ'
	},
	{
		src : 'images/index_ph002.jpg',
		alt : '価値創造のベストパートナーへ'
	},
	{
		src : 'images/index_ph003.jpg',
		alt : '価値創造のベストパートナーへ'
	},
	{
		src : 'images/index_ph004.jpg',
		alt : '価値創造のベストパートナーへ'
	},
	{
		src : 'images/index_ph005.jpg',
		alt : '価値創造のベストパートナーへ'
	}
];

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;
}
