$(document).ready(function(){
	$("#commentform input").not("#submit").addClass("textinput");
	$("#commentform textarea").addClass("textinput");
	$("#tweets li:last").addClass("last");
	$("#s").focus(function(){
		if ($("#s").val() == "Search...") { $("#s").val(""); }
	    this.select();
	});
	$('a.external').click(function(){
		window.open(this.href);
		return false;
	});
	// http://davidwalsh.name/detect-iphone
//	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
//		 if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = "http://www.idmaa.org/idmaa2009/index.php?wptheme=Mobile+iDMAa";
//	}
});