/**
participants code
*/




$(document).ready(function() 
{
	$('a.collectionLink').click(function(e){
		e.preventDefault();
		clickCollection(this);
	});		
});

function clickCollection(obj)
{
	obj = $(obj);
	href = obj.attr('href');
	rel = obj.attr('rel');

	
	temp = href.split(collections_split_dir+rel+'/');
	hash = temp[1];
	hash = hash.replace('.html','');
	uri = collections_split_dir+rel+'/#'+hash;
	debug(uri);
	//alert(uri);
	if(hash.length > 0)
	{
		document.location.href = uri;
	}
	return false;	
}
