/// <summary>
/// The Common class adds the javascript logic used throughout the sute.
/// </summary>

$(document).ready(function(){
	//Add print command to click events for all print buttons.
	$("li.print").click(function() {
		$('div#wrapper').attr({
			style: "background:none;border:none;margin:0px auto;padding:1.182em 0 0 15px;width:935px;"
		});
		$('div#body_wrapper').attr({
			style: "background:none;"
		});
		
		$('div#masthead').hide();
		$('ul#nav_primary').hide();
		$('ul#nav_secondary').hide();
		$('div#content_secondary').hide();
		$('div#nav_seo').hide();
		$('div#supp').hide();
		print();		
	});
});
