// 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/406249/header.swf height=270 width=950 frameborder=0></iframe>');

});
