// 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 swf banner
	
	$("#headWrap")
		.append('<iframe src=/files/306061/header.swf height=265 width=950 frameborder=0></iframe>');

});

