$(document).ready(function() {

	$.fn.delay = function(time, callback){
    // Empty function:
    jQuery.fx.step.delay = function(){};
    // Return meaningless animation, (will be added to queue)
    return this.animate({delay:1}, time, callback);
}
	
	$('#hoverArea, #aniBox, #box')
	  .bind('mouseenter', function(e) {
		$('#gfwLogo').delay(750).hoverFlow(e.type, { marginTop: -250 }, 2500);
	  }).bind('mouseleave', function(e) {
		$('#gfwLogo').delay(1500).hoverFlow(e.type, { marginTop: 7 }, 2500);
	  });

});