// SHOW/HIDE ELEMENT ----------------------------------------------------------- //

function showHide(shID) {
   if (document.getElementById(shID)) {
      if (document.getElementById(shID+'-show').style.display != 'none') {
         document.getElementById(shID+'-show').style.display = 'none';
         document.getElementById(shID).style.display = 'block';
      }
      else {
         document.getElementById(shID+'-show').style.display = 'inline';
         document.getElementById(shID).style.display = 'none';
      }
   }
}

// END SHOW/HIDE ELEMENT ------------------------------------------------------- //





// ICON ROTATOR ---------------------------------------------------------------- //

function mycarousel_initCallback(carousel)
{
    // 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('#mycarousel').jcarousel({
        auto: 8,
        wrap: 'circular',
		animation: 'slow',
        initCallback: mycarousel_initCallback
    });
});


// END ICON ROTATOR ------------------------------------------------------------- //
