$(function(){
	
	
	$('#Content').addClass('ed_content');

	$('table.download td').addClass('pointer');
	$('table.download tr').hover(
		function() { $(this).children().addClass('bg-3-light hover') },
		function() { $(this).children().removeClass('hover bg-3-light'); }
	);
	
	$('table').each(function() {
		if ($(this).attr('border') == '0') {
			$(this).css('border-width','0');
			$(this).find('td').css('border-width','0');
		}
	});
	
	$('a.print_button').click(function (){ 
		window.print();
		return false;
	});

	// Text size switch
	$("#bigger_A").click(function () { $(".ed_content p").css("font-size","120%"); });
	$("#small_A").click(function () { $(".ed_content p").css("font-size","100%"); });


});


