You can hide all divs and then show the one you want...
<script>
// i'm assuming all your divs' names begins with 'content'
$(document).ready(function(){
$('#content1').hide();
$('#content').hide();
$('a.aici').click(function(){
$("div[id^='content']").hide();
$('#content1').toggle('slow');
});
$('a.acolo').click(function(){
$("div[id^='content']").hide();
$('#content').toggle('slow');
});
});
</script>
j.
2010-04-26 13:11:02