// iphone/ipad redirect
num_days = 1;

function readCookie(cookieName){
    var start = document.cookie.indexOf(cookieName);
    if (start == -1){ 
        document.cookie = "seenit=yes;";
		window.location = "http://ipad.drumroll.com";
    }
}

if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) {
	window.location = "http://iphone.drumroll.com";
}else if((navigator.userAgent.match(/iPad/i))){
	// window.location = "http://ipad.drumroll.com";
	readCookie("seenit");
}

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();
	});