function addHighSlideAttribute() {
  var isIE = (document.documentElement.getAttribute('style') ==
              document.documentElement.style);
  var anchors = document.getElementById('content').getElementsByTagName('a');
  for (var i = 0, len = anchors.length; i < len; i++) {
    if (anchors[i].className == 'highslide') {
      if (!anchors[i].getAttribute('onclick')) {
        isIE ? anchors[i].setAttribute('onclick', new Function('return hs.expand(this)')) :
               anchors[i].setAttribute('onclick','return hs.expand(this)');
        isIE ? anchors[i].setAttribute('onkeypress', new Function('return hs.expand(this)')) :
               anchors[i].setAttribute('onkeypress','return hs.expand(this)');
      }
    }
  }
};

$(function() {
	jQuery('#slide').crossSlide({
	fade: 1 
	}, [
{ src: 'http://www.hd-yoyo.jp/images/top/1_touring.jpg', from: 'top center 0.92x', to: 'center left 1.2x', time: 4 },
{ src: 'http://www.hd-yoyo.jp/images/top/2_softail.jpg', from: '50% 80%', to: '50% 20% 1.2x', time: 4 },
{ src: 'http://www.hd-yoyo.jp/images/top/3_dyna.jpg', from: '40% 40% 0.8x', to: '100% 100%', time: 4 },
{ src: 'http://www.hd-yoyo.jp/images/top/topheader2012.jpg', from: '100% 100%', to: '100% 100%', time: 4 },
{ src: 'http://www.hd-yoyo.jp/images/top/4_sportaster.jpg', from: 'center left 1.3x', to: 'center right', time: 4 },
{ src: 'http://www.hd-yoyo.jp/images/top/5_vrscdx-4.jpg', from: 'center center 0.9x', to: 'center right 1.2x', time: 4 },
{ src: 'http://www.hd-yoyo.jp/images/top/6_cvo.jpg', from: 'center top 0.9x', to: 'center bottom 1.3x', time: 4 },
{ src: 'http://www.hd-yoyo.jp/images/top/topheader2012.jpg', from: '100% 100%', to: '100% 100%', time: 4 }
	]);
});

