function initSlider($) {  
  $(document).ready(function() {
    $("#slider").SexySlider({
      width     : 900,
      height    : 500,
      delay     : 10000,
      strips    : 15,
      autopause : true,
      navigation: false, //'#navigation',
      control   : false //'#control'
    });
  });
}

function showWithShadowbox(_href) {
  Shadowbox.open({
      player:     "img",
      content:    _href
  });
}

function setupProductMorePhotos() {
  jQuery('#thumbnails a').click(function() {
    jQuery('#product-more-photos td img')[0].src = jQuery(this).attr('rel');
    return false;
  });
}

