// ==UserScript==
// @name          CSS Nite With twitter
// @description	  cssnitewithtwitter
// @include       http://twitter.com/cssnite/with_friends*
// ==/UserScript==

(function() {
	var user = "cssnite";
	var table = document.getElementById("timeline");
	var tabletrs = table.getElementsByTagName("tr");
	for (var i=0; i<tabletrs.length; i++) {
		var tabletr = tabletrs[i];
		tabletr.style.display="none";
		var anchors = tabletr.getElementsByTagName("a");
		for (var j=0; j<anchors.length; j++) {
			var anchor = anchors[j];
			if(anchor.innerHTML && anchor.innerHTML == "in reply to "+user){
				tabletr.style.display="block";
			}
		}
	}
})();
