$(function() {
var stop = false;
$("#cx_conteudo h6").click(function(event) {
if (stop) {
event.stopImmediatePropagation();
event.preventDefault();
stop = false;
}
});
$("#cx_conteudo").accordion({
header: "> div > h6",
autoHeight: false,
fillSpace: true
}).sortable({
axis: "y",
handle: "h6",
stop: function(event, ui) {
stop = true;
}
});
});


