// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function setExternalLinks() 
{
	if(!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	var a;
	for (var i=0; i<anchors.length; i++) 
	{
		a = anchors[i];
		if (a.getAttribute("href") && a.getAttribute("rel") && a.getAttribute("rel").indexOf('external') != -1)
			a.target = "_blank";
	}
}