function Projects()
{
	this.init	= function()
	{
		$(window).load
		(
			function()
			{	
				init_projects();	
			}
		);
	}
}


new Projects().init();


function init_projects()
{
	$('li a', '#project-navigation').each
	(
		function(key, value)
		{
			$(value).mouseenter
			(
				function()
				{
					$('.hero', this).animate
					(
						{
							"top": "0px"	
						},
						500
					);
				}
			).mouseleave
			(
				function()
				{
					$('.hero', this).animate
					(
						{
							"top": "128px"	
						},
						300
					);
				}
			)
		}
	);
}

