//<![CDATA[

function global()
{
	$('#header').click
	(
		function (e)
		{
			window.location.href = '';
		}
	);
	
	$('.portfolio-item').mouseout
	(
		function (e)
		{
			$(this).toggleClass('portfolio-item-over');
		}
	);
	
	$('.portfolio-item').click
	(
		function (e)
		{
			window.location.href = $(this).children('a').attr('href');
		}
	);
}

$(document).ready(global);

// ]]>