$('document').ready(function(){ 
	$('#open').hide();  
	$('div.clicka').toggle(function() {    
		var id = $(this).attr('id');    
		$('#open' + id).show(500);  
	}, function() {    
		var id = $(this).attr('id');   
		$('#open' + id).hide(500);  
	});
});
