$(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');
		}
	});
	
	
	
});
 
