// reverseOrder Function

(function($){$.fn.reverseOrder=function(){return this.each(function(){$(this).prependTo($(this).parent())})}})(jQuery);



$(document).ready(function() {

  $('#full-width-main-bar div.overview').children("div").reverseOrder();

  $('#full-width-main-bar').tinycarousel({ start: 2, animation: false });

});
