$(document).ready(function(){
	jQuery.easing.def = 'easeOutQuart';
	$('a.find-us-on').attr('href','javascript:void()');
	$('.social').hover(function(){
		$(this).stop().animate({marginTop: 0}, 340);
	}, function() {
		$(this).stop().animate({marginTop: '-122px'}, 500);
	});
});


/* JQUERY EASING (http://gsgd.co.uk/sandbox/jquery/easing/) */
jQuery.easing['jswing'] = jQuery.easing['swing'];
jQuery.extend( jQuery.easing,{
	def: 'easeOutQuad',
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c*((t=t/d-1)*t*t*t - 1) + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	}
});

