$(function(){
	$('a.lightbox').lightbox();
	
	
	$('#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'); }
	);
	$('a.print_anchor').click(
			function (){ 
				window.print();
				return false;
			}		
			
			);
	
	
//	$('table').each(function() {
//		if ($(this).attr('border') == '0') {
//			$(this).css('border-width','0');
//			$(this).find('td').css('border-width','0');
//		}
//	});
	


});


