
jQuery.noConflict();

  jQuery(document).ready(function($) {

    // Code that uses jQuery's $ can follow here.

	if ($("#banner-left div.jcarousel-skin-swag li").length >= 2) {
		$("#banner-left div.jcarousel-skin-swag").jcarousel({
		  scroll: 1,
		  animation: 1000,
		  auto: 5,
		  wrap: "circular",
		  buttonNextHTML: null,
		  buttonPrevHTML: null,
		  initCallback: pauseOnHover
		});
	}
	else {
		$("#banner-left div.jcarousel-skin-swag").jcarousel({
		  scroll: 0,
		  animation: 0,
		  auto: 0,
		  wrap: null,
		  buttonNextHTML: null,
		  buttonPrevHTML: null,
		  initCallback: pauseOnHover
		});
	}


  });
