// JavaScript Document

// Normal jQuery items
$(document).ready(function() {
	//turn off "print" and "email" buttons on artilces
	$("a[@target='print_this']").css({display: "none"});
	$("a[@target='email_this']").css({display: "none"});
	
	// Add tiny top nav in header
	$("#contactLink")
		.append('&nbsp;<a href="/content/contact.html" style="font-weight:bold">Email Me</a>');

});
