/*
	Copyright: 	Hybrid Forge 2010. All Rights Reserved.
	Author: 	Rod Miles (www.HybridForge.com)
	Date:		December 2010
	
	Info:		Customizations & Styling
=============================================================================*/
 
 
/*	jQuery Customizations
=============================================================================*/
jQuery.noConflict();	// required to use jQuery when Prototype is active
jQuery(document).ready(function($) {

	/*	Misc. EASING Functions
	--------------------------------------------------------------*/
		$.easing.custom = function (x, t, b, c, d) { 
			var s = 1.70158;  
			if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 
			return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 
		}	
		$.easing.easeInOutQuint = function (x, t, b, c, d) {
			if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
			return c/2*((t-=2)*t*t*t*t + 2) + b;
		}
	
	
	

});

