$(document).ready( function () {var horizontal = true;var $panels = $('#carousel .carousel-main');var $container = $('#carousel .scrollContainer');var $scroll = $('#carousel .scroll');if(horizontal){$panels.css({'float':'left','positioon':'relative'});$container.css('width',$panels[0].offsetWidth * $panels.length);}$('#carousel .carousel-controller a').click(selectNav);function selectNav() {$(this).parents('ul:first').find('li').removeClass('selected-controller').end().end().parent('li:first').addClass('selected-controller');}function trigger(data) {var el = $('#carousel .carousel-controller').find('a[href$="' + data.id + '"]').get(0);selectNav.call(el);}if (window.location.hash) {trigger({ id : window.location.hash.substr(1) });} else {$('ul.carousel-controller a:first').click();}var scrollOptions = {target: $scroll,items: $panels,navigation: '.carousel-controller a',axis: 'xy',duration: 500,easing: 'swing',interval: 9600,force: true,onAfter: trigger};$('#carousel').serialScroll(scrollOptions);});