var funProjectLinks = function()
{
	$$('.projects .project').addEvents({
		'click': function()
		{
			var locationURL = this.getFirst('a').href;
			window.location = locationURL;
		},
		'mouseenter': function()
		{
			this.addClass( 'hover' );
		},
		'mouseleave': function()
		{
			this.removeClass( 'hover' );
		}
	});
}

window.addEvent(
	'domready',
	funProjectLinks
);