$j(document).ready(function() {
	
	// ----------------------- OPEN EXTERNAL LINKS IN A NEW WINDOW
	$j("a[href^='http:']:not([href*='" + window.location.host + "'])")
		.not("[href^=#]")
		.not("[href*=playstation.com]")
		.attr("rel", "nofollow")
		.attr("target", "_blank");
	
	// ----------------------- [SONYPS-786] ADD NO FOLLOW TO: user profiles, tags, and Report Abuse links
	$j("a[href*='/people'], a[href*='tags'], a[href*='/message-abuse']").each(function(){
		var url = $j(this).attr("href");
		// make sure it's an internal link
		if(url.indexOf("http://" + window.location.host) >= 0 || url.substring(0,1) == "/") {
			$j(this).attr("rel", "nofollow");
		};
	});
	
});
