function AdditionalBinds(path)
{

	//press releases
	$("a[href*='index.asp?page=news&section=press&id=']").each(	
		function() {		
			$(this).attr("href", $(this).attr("href") + "&title=" + $(this).html());		
	});
	
	//breadcrumbs
	var breadcrumb = "";
	$("td.contentleft .breadcrumb a").each(
	function() {
		breadcrumb += $(this).text().replace(/>/, "").replace(/^\s*/, '').replace(/\s*$/, '')  + "/";
	});

	if($(".breadcrumb span.current").html() != null)
	{
		breadcrumb += $("span.current").html() + "/";
	}
	path += breadcrumb;
	
return path

}
