﻿jQuery(function($){
				
	
	// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Universal
	
	/**
	 * jquery.easing.1.3.js
	 * @require		jQuery
	 * @version		1.0.0.0 - 20:11 2009/02/09
	 */

	$('a[href*="#"]' ).click(function() {
		var wH = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var targetOffset = (this.hash != '#footer')? target.offset().top : $('body').height() - wH;
				$('html,body').animate({scrollTop: targetOffset}, 1000, 'easeOutExpo');
				return false;
			}
		}
	});
	
	
	// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Individual
	
	/**
	 * plugin name
	 * @require		jQuery
	 * @version
	 */
	
	


});



