$(document).ready(function(){
$(".con .dynamic").toggle(function(){
$(this).next(".tab_ul").animate({height: 'toggle', opacity: 'toggle'}, "slow");
},function(){
$(this).next(".tab_ul").animate({height: 'toggle', opacity: 'toggle'}, "slow");
});
});