$(document).ready (function()
{
	/*var items = $(".portfolio-list-item");
	items.each (function()
	{
		$(this).hover (function()
		{
			var current = $(this);
			items.each (function()
			{
				//console.log ($(this) == current);
				if ($(this).attr ("id") != current.attr("id"))
					$(this).fadeTo (200, 0.3);
			});
		}, function()
		{
			var current = $(this);
			items.each (function()
			{
				if ($(this).attr ("id") != current.attr("id"))
					$(this).fadeTo (200, 1);
			});		
		});
	});
	*/
});

