 // carousel latest outfits homepage
 
function mycarousel_initCallback_latestoutfits(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#newestoutfits').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_latestoutfits
          });
      });

 
 // carousel for outfits with this item
 
 function mycarousel_initCallback_outfitswithitem(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#outfitswithitem').jcarousel({
              auto: 0,
              scroll: 4,
              wrap: 'last',
              initCallback: mycarousel_initCallback_outfitswithitem
          });
      });

// carousel for similar products - 
	  
 function mycarousel_initCallback_similarproducts(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#similarproducts').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_similarproducts
          });
      });
	  
	  
// carousel for toparticles products - 
	  
 function mycarousel_initCallback_toparticles(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#toparticles').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_toparticles
          });
      });
	  
// carousel for topsale products - 
	  
 function mycarousel_initCallback_topsale(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#topsale').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_topsale
          });
      });
	  
// carousel for comhome_newestoutfits	  
	  
	 function mycarousel_initCallback_comhome_newestoutfits(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#comhome_newestoutfits').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_comhome_newestoutfits
          });
      });
	  
// carousel for comhome_newestuser	  
	  
	 function mycarousel_initCallback_comhome_newestuser(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#comhome_newestuser').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_comhome_newestuser
          });
      });
	  
// carousel for comhome_activeuser	  
	  
	 function mycarousel_initCallback_comhome_activeuser(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#comhome_activeuser').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_comhome_activeuser
          });
      });
	  
// carousel for lieblingsoutfits	  
	  
	 function mycarousel_initCallback_lieblingsoutfits(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#lieblingsoutfits').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_lieblingsoutfits
          });
      });  
	  
// carousel for lieblingsteile	  
	  
	 function mycarousel_initCallback_lieblingsteile(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

      jQuery(document).ready(function() {
          jQuery('#lieblingsteile').jcarousel({
              auto: 0,
              wrap: 'last',
              initCallback: mycarousel_initCallback_lieblingsteile
          });
      });  
	  
	// carousel for more outfits from 
	  
	 function mycarousel_initCallback_moreoutfitsfrom(carousel)
      {
          // Disable autoscrolling if the user clicks the prev or next button.
          carousel.buttonNext.bind('click', function() {
              carousel.startAuto(0);
          });

          carousel.buttonPrev.bind('click', function() {
              carousel.startAuto(0);
          });

          // Pause autoscrolling if the user moves with the cursor over the clip.
          carousel.clip.hover(function() {
              carousel.stopAuto();
          }, function() {
              carousel.startAuto();
          });
      };

        jQuery(document).ready(function() {
          jQuery('#moreoutfitsfrom').jcarousel({
              auto: 0,
              wrap: 'last',
              scroll: 3,
              initCallback: mycarousel_initCallback_moreoutfitsfrom
          });
      });




      
	  
    
	  