$(document).ready(function(){
	/*SCRIPT PARA ANIMACION DE LA BOTONERA MINIATURA*/	
	$('ul.botonera_miniaturas li a').mouseover(function() {
  		$(this).fadeTo('fast', 0.6);
	}); 
	
	$('ul.botonera_miniaturas li a').mouseout(function() {
  		$(this).fadeTo('slow', 1);
	});
	
	/*SCRIPT PARA EASING*/	
	$.easing.custom = function (x, t, b, c, d) { 
		var s = 1.70158;  
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(0.525))+1)*t - s)) + b; 
		return c/2*((t-=2)*t*(((s*=(0.525))+1)*t + s) + 2) + b; 
	}
});
