/**
 * Preload Top Images & Create Cache
 * for {@link http://www.fujitozan.jp/}
 *
 * @author  Takeru Hirose
 *
 * $LastChangedDate$
 */

function preload(dir, imgs){
	var imgDir = dir;
	for(var i = 0; i < imgs.length; i++){
		var imgObj = new Image();
		imgObj.src = imgDir + imgs[i];
	}
}

window.onload = function() {
	// tour top
	preload('/commonfiles/images/headerimages/tourtop/', ['top_01.jpg', 'top_02.jpg', 'top_03.jpg']);
	// program top
	preload('/commonfiles/images/headerimages/programtop/', ['top_01.jpg', 'top_02.jpg', 'top_03.jpg']);
	// media top
	preload('/commonfiles/images/headerimages/mediatop/', ['top_01.jpg', 'top_02.jpg', 'top_03.jpg']);
	// site
	preload('/commonfiles/images/common/', ['site-tour.png', 'site-program.png', 'site-media.png']);
	// menu
	preload('/commonfiles/images/common/', ['menu-tour.png', 'menu-program.png', 'menu-media.png', 'menu-members']);
}

