$(document).ready(function(){
  $('a[rel^=lightbox]').colorbox({maxWidth:'1024',maxHeight:'800'})
  $('#customer-links a.email').colorbox({maxWidth:'1024',maxHeight:'800'});
if ($('#product-tabs').length) {
  $('div[id^=tabs]').hide();
  $('#tabs-1').show();
  $('#product-tabs li:first-child').attr('class','active');
  $('#product-tabs a').click(function(){
    $('#product-tabs li').removeAttr('class');
    $(this).parents('li').attr('class','active');
    $('div[id^=tabs]').hide();
    var h = $(this).attr('href');
    h = h.replace('#','');
    $('div[id='+h+']').show();
    return false;
  });
  if (location.hash) {
    $('div[id^=tabs]').hide();
    $(location.hash).show();
    $('#product-tabs li').removeAttr('class');
    $('a[href='+location.hash+']', '#product-tabs').parents('li').attr('class','active');
  }
}

$('#link-helper').click(function(){
  $('#helper').slideToggle();
  return false;
});
$('#link-close').click(function(){
  $('#helper').slideToggle();
  return false;
});
$('.help').click(function(){
  $('#helper').slideToggle();
  return false;
});

});

