Soy nueva no esto la verdad que no entendí muy bien lo que me dijiste pero hice esto
<html>
<head>
<script>
$(document).ready(function()
{
$('#Python').click(function(){$("#contenido").load("c_python.html");});
$('#Django').click(function(){$("#contenido").load("c_django.html");});
$('#Jython').click(function(){$("#contenido").load("c_jython.html");});
});
</script>
</head>
<body>
<a href="#" id="Python">Python</a>
<a href="#" id="Django">Django</a>
<a href="#" id="Jython">Jython</a>
<br>
<table border="1">
<tr>
<td>Hola gente soy</td>
<td id ="contenido"></td>
</tr>
</table>
</body>
</html>