$(document).ready(function() {
  $('#block-uc_cart-0 h2, #block-uc_cart-0 .content').click(function() {
    window.location = Drupal.settings.basePath + 'cart';
  });
  if ($('.node-type-product, .node-type-kleider, .node-type-vorverkauf').length > 0) {
    $('#block-uc_cart-0').prepend('<h2 class="go_shopping">Weitershoppen</h2>');
    $('#block-uc_cart-0 .go_shopping').click(function() {
      window.location = Drupal.settings.basePath;
    });
  }
  $('.product-images').scrollable({
    items: '.images',
    item: '.image',
    next: '.product-browse.right',
    prev: '.product-browse.left',
    size: 4
  });
  $('.add-to-cart .attributes .form-radios').each(function() {
    $(this).find('input[type=radio]:first').attr('checked', 'checked');
  });
  $('#uc-cart-checkout-form fieldset legend, #search-form fieldset legend').wrapInner('<span></span>');
}); 
var changeProductPicture = function(ele, rel_count, product_url, full_url) {
  $('.left_product_details .active_image').html('<a rel="lightbox[' + rel_count + ']" title="" href="' + full_url + '"><img class="imagecache imagecache-product" width="227" height="202" title="" alt="" src="' + product_url + '"/></a>');
  Lightbox.initList();
}
