$(document).ready(function(){

	// external links
	$("a[href*='http://']:not([href*='woodwarddesignbuild.com'])").addClass("external-link");
	$('a.external-link').each(function() {
		$(this).attr("title", $(this).attr("title")+" (opens in a new window)");
	});
	$("a.external-link").click(function() {
		window.open(this.href);
		return false;
	});

	// nice typography
	Cufon.replace('h1');

});