google.load("jquery", "1");
google.setOnLoadCallback(function(){
	/* Easing Functions */
	jQuery.easing['jswing'] = jQuery.easing['swing']; jQuery.extend( jQuery.easing,{ def: 'easeInOutQuad', swing: function (x, t, b, c, d) { return jQuery.easing[jQuery.easing.def](x, t, b, c, d); }, easeInQuad: function (x, t, b, c, d) { return c*(t/=d)*t + b; }, easeOutQuad: function (x, t, b, c, d) { return -c *(t/=d)*(t-2) + b; }, easeInOutQuad: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t + b; return -c/2 * ((--t)*(t-2) - 1) + b; } });
	/*
	$('#body .thumb a').hover(function(){
		$(this).children('.text').animate({bottom:'4px'}, 100);
	},function(){
		$(this).children('.text').animate({bottom:'-30px'}, 300);
	});
	*/
});