/* Change Image
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
$(function(){
	var targetBox02 = $('#mainImageBox');	
	var rundom = Math.floor((4 - 1 + 1) * Math.random() + 1);



	var imageHtml01 ='<img src="/english/common/images/subNavi_ph002.jpg" alt="Person in charge" width="144" height="80" />'
	var imageHtml02 ='<img src="/english/common/images/subNavi_ph003.jpg" alt="Person in charge" width="144" height="80" />'
	var imageHtml03 ='<img src="/english/common/images/subNavi_ph004.jpg" alt="Person in charge" width="144" height="80" />'	
	var imageHtml04 ='<img src="/english/common/images/subNavi_ph005.jpg" alt="Person in charge" width="144" height="80" />'	

	if(rundom == 1){
		targetBox02.html(imageHtml01);
	}
	if(rundom == 2){
		targetBox02.html(imageHtml02);
	}
	if(rundom == 3){
		targetBox02.html(imageHtml03);
	}
	if(rundom == 4){
		targetBox02.html(imageHtml04);
	}

})
