{% capture gallery_slider %}
{{ -----BEGIN GALLERY CONFIGURATION---- }}
{% endcapture %}
{{ gallery_slider }}
{{ gallery_slider | replace: "gallery-slider", "carousel" }}
jQuery.noConflict();
(function($) {
$(document).ready(function(){
$('#wide-slider').appendTo('#wide-slider-contents');
$('#carousel').flexslider({
animation: "slide",
controlNav: false,
animationLoop: false,
slideshow: false,
itemWidth: 210,
itemMargin: 5,
asNavFor: '#gallery-slider'
});
$('#gallery-slider').flexslider({
animation: "slide",
controlNav: false,
animationLoop: false,
slideshow: false,
sync: "#carousel",
start: function(slider){
$('body').removeClass('loading');
}
});
});
})(jQuery);