/* ===================================================================
JS information

 file name  :setting.js
 info       :各種jQueryプラグインの初期設定
=================================================================== */

/*----------------------------------------------------
  Scrollable
    http://flowplayer.org/tools/demos/scrollable/
----------------------------------------------------*/
$(function () {
  $("div.scrollable").scrollable({
		size: 1,
		speed: 1200
	})
	.autoscroll(5000)
	.navigator({
		navi: 'ul.allbtn',
		naviItem: 'li'
	})
	.circular();
});

/*----------------------------------------------------
	jQuery PopUpWindow
		http://rip747.github.com/popupwindow/
----------------------------------------------------*/
var profiles = {
  windowCenter: {
    width: 680,
    height: 800,
    center: 1,
    scrollbars: 1
  }
};
$(function () {
  $(".popupwindow").popupwindow(profiles);
});

