jQuery(document).ready(function($) {          
$('#searchBox').click(function(){ $(this).val(''); });
  var sortRand = $('#mycarousel li').get().sort(function(){
    return Math.round(Math.random())-0.5
  });
  
  $('#mycarousel').append(sortRand).show().jcarousel();
});


