﻿/* JavaScript Information *************************************
File name: function.js
Description: jQuery progress function
Created date: 2009/10/30
Last created date: 2009/11/10
Created by: Elephant Communications
***************************************************** */


/* Table Of Contents
----------------------------------------

* smoothscroll
* stripe

----------------------------------------*/



/* smoothscroll setting
-------------------------------------------------------------------------------------------------------*/
(function($) {

	
	$(function() {
		$.progress.smoothscroll();
	});
	//---------------------------------------------------------------------------------------------------
	
	$.progress = {
		// ページ内スムーススクロール
		smoothscroll: function(){
			/* class="localscroll"内の<a>全てにlocalScrollを適用
			 *
			 * @require jquery.js
			 * @require jquery.easing.js
			 * @require jquery.localScroll.js
			 * @require jquery.scrollTo.js
			 */
			$(".localscroll").localScroll({easing: "easeOutExpo"});
		}
		
	};
})(jQuery);
