/**
 * @author tamuraeiji
 */
$(function() {

  /* ロールオーバー　(クロスフェードより先に記述の必要性あり)　*/	
	$('#mainNavi img').rollover();	

  /* ニュースティッカー　*/
	$("ul#ticker02").liScroll({travelocity: 0.05});

 
 $('#fade_photo').crossSlide(
		{
  			fade: 3
		}, [
  {
	src:  'contents/new/photo/hatuyuki.jpg',
	alt:  '初雪',
	from: '100% 100% 1x',
	to:   '0% 10% 1.5x',
	time: 20
  }, {
    src:  'contents/new/photo/jyadaniohhashi.jpg',
    alt:  '蛇谷大橋',
    from: '0% 100% 1x',
    to:   '80% 0% 1.5x',
    time: 20
  }, {
    src:  'contents/new/photo/sanpouiwa2_2.jpg',
    alt:  '三方岩',
    from: 'top left',
    to:   'bottom right 1.5x',
    time: 10
  }, {
    src:  'contents/new/photo/kunimidai.jpg',
    alt:  '国見台',
    from: 'top right 1.5x',
    to:   '0% 50% 1x',
    time: 10
  }, {
    src:  'contents/new/photo/fukube.jpg',
    alt:  'ふくべの大滝',
    from: 'top right 1x',
    to:   'bottom right 1x',
    time: 10
  }
		] 
			/* ,function(idx, img, idxOut, imgOut) {
  			if (idxOut == undefined)
		   	{
		    	// starting single image phase, put up caption
			    $('div.caption').text(img.alt).animate({ opacity: .7 })
  			}
  			else
			{
			    // starting cross-fade phase, take out caption
			    $('div.caption').fadeOut()
			}
		} */
  )

  /* 写真のスライド */
 	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});
 	

/* ドロップシャドー　*/
  	/* テキストの場合 */
	$('.textshadow').dropShadow({
		left : 3 ,
		top : 3 ,
		blur : 5 ,
		color : "blue"
	});
	/* ボックスの場合 */
	$('.dropshadow').dropShadow({
		left : 3 ,
		top : 3 ,
		blur : 5 ,
		color : "#000000"
	});
 
  
/* 角丸各種 */
	$('.dropshadow').corner("10px");
	$('#container').corner("15px");
	$('#ichi').corner("15px")

/* end */

});

