$(function(){
	$("a[@href^=http:]").not("[href^=http://10.0.1.2:8888/]").not("[href^=#]").not("[href^=http://development.chromaticsites.com/]").not("[href^=http://straymond.net/]").not("[href^=http://farm5.static.flickr.com/]").not("[href^=http://www.straymond.net/]").addClass("external").click(function() { window.open(this.href); return false; });
	$("a[@href$=pdf]").addClass("pdf").click(function() { window.open(this.href); return false; });
	$("a[@href$=zip]").addClass("zip");
	$("a[@href$=psd]").addClass("psd");
	$("a[@href$=doc]").addClass("doc").click(function() { window.open(this.href); return false; });
	$("a[@href$=xls]").addClass("excel");
	$("a[@href$=jpg]").addClass("jpg");
});