$(document).ready(function() {
var showText='&gt;&gt;';
var hideText='&lt;&lt;';
$('.toggle').prev().append('<a href="#" class="toggleLink">'+showText+'</a>');
$('.toggle').hide();
$('.toggleLink').click(function() {
$(this).html ($(this).html()==hideText ? showText : hideText);

$(this).parent().next('.toggle').toggle('slow');
return false;

});
});

Ext.onReady(function() {
                new Ext.ux.Carousel('simple-example');
                
           
            })


   