var url = document.location.href;
var title = 'SJ Harvey Group';
function favorites(){
	if(document.all)
		window.external.addfavorite(url,title)
	return false;
}

function initialize () {
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++){
		if (x[i].getAttribute('rel') == 'external')
			x[i].target="_blank";
		if (x[i].getAttribute('rel') == 'favorite')
			x[i].onclick = function (){return favorites()}
	}
}

window.onload = initialize;

