function AdditionalBinds(inputpath)
{
	//properties
	$("a[href*='?page=properties&id=']").each(	
		function() {		
			$(this).attr("href", $(this).attr("href") + "&title=" + $(this).html());		
	});
	//news
	$("a[href*='index.asp?page=news&id=']").each(	
		function() {		
			$(this).attr("href", $(this).attr("href") + "&title=" + $(this).html());		
	});
	

	
	return inputpath;

}
