// 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
	
	$("#headWrap")
		.append('<a href=/?CI=1><img src=/files/1580625/spacer.gif width=950 height=145></a>');

});
