﻿
/* logo animation */

var logoAnimation = function()
{
	$( 'h1' ).hover( function()
	{
		$( this )
		.animate( { top: '+=3px', left: '+=6px' }, 100 )
		.animate( { top: '-=3px', left: '-=6px' }, 50 )
		.animate( { top: '+=6px', left: '+=3px' }, 50 )
		.animate( { top: '-=6px', left: '-=3px' }, 120 );
	});
};

$( window ).load( logoAnimation );
