var currentWork = null;

function toggleWork(id)
{
	if (currentWork != null)
	{
		$('#work_info_' + currentWork).slideUp();
		$('#work_link_' + currentWork).get(0).className = 'portLink';
		
	}
	
	if (currentWork != id)
	{
		$('#work_info_' + id).slideDown();
		$('#work_link_' + id).get(0).className = 'activePortfolio';
		currentWork = id;
	}
	else
	{
		currentWork = null;
	}
}





function fancyGo(i) {
	//alert($.fn.fancybox.goTo);
	//alert(1);
	$.fn.fancybox.goTo(i);
	/*
	opts.itemCurrent = i;
	_change_item();
	*/
}
