// JavaScript Document

//プリロード
(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)

jQuery.preLoadImages("../home_images/home_main_web.jpg", "../home_images/home_main_print.jpg", "../home_images/home_main_sign.jpg", "../home_images/home_main_copy.jpg");



$(document).ready(function() {
	$('#coin-slider').coinslider({ width:900, height:390, spw: 7, sph: 7, navigation: false, delay: 4000, sDelay: 60, });
});
