
	//=================================
	// ギャラリーエフェクト
$(function(){

	//=================================
	// ギャラリーエフェクト
	$('#photoGallery').cycle({
		fx: 'fade',
		speed: 300,
		timeout: 0,
		pager:  '#thumb',
		pagerAnchorBuilder: function(idx, slide) {
			return '#thumb li:eq(' + (idx) + ') a';
		}
	});


  $(".pop_pdf").click(function(){
    var orgin_href = "";
    var path = $(this).attr("href");
      $(this).attr("target", "_self");
      orgin_href = $(this).attr("href");
  	  location.href("/file_dl.php?filenm=" + orgin_href);
  	  return false;

  });

});

