
// iphone redirect
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) {
	location.replace('http://iphone.drumroll.com');
}

function externalLinks() {
	var anchors = $("a"); 
	for (var i=0; i<anchors.length; i++) { 
		if (anchors[i].getAttribute("href") && anchors[i].getAttribute("rel") == "external") anchors[i].target = "_blank"; 
	}
}

$(document).ready(function(){
		externalLinks();
	});