// 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('<iframe src=/files/1154645/header.html height=235 width=950 scrolling=no frameborder=0></iframe>');

});
