/* Slideshowaktivierung (max. 10 Stück) */
function slideshow(f_fadetime, id) {   
    if (f_fadetime == null) f_fadetime = 3200;    
    var active = $(id + ' div.active'); 
    var next = active.next().length ? active.next() : $(id + ' div:first');                   
    active.fadeOut(f_fadetime).removeClass('active');
    next.fadeIn(f_fadetime).addClass('active');
}
function slideshow_start(id) {
  //  $(id + ' div').css('display', 'none');
    $(id + ' div:first').css('display', 'block');
    $(id + ' div:first').addClass('active');    
    if ($(id + ' div').length > 1) {
      setInterval("slideshow(2000, '" + id + "')", 8000);
    }   
}
$(document).ready(function() {
  for (var i=1; i<=10; i++) {
    slideshow_start('#slideshow' + i);
  }
});  

$(document).ready(function() {
  if ($('div#bg')) {
    $('div#bg').fadeIn(7000);
    $('div#text_1').delay(1000).fadeIn(2500);
    $('div#text_2').delay(3000).fadeIn(2000);
    $('div#text_3').delay(5000).fadeIn(3000);
  }
});

  

/* Background-Color-Change */
$('.box_category').hover(
  function () {
    $(this).css('background-color','#F8F6CD');         
  },
  function () {
    $(this).css('background-color','');         
  }
); 
/* Background-Color-Change */
$('.box_product').hover(
  function () {
    $(this).css('background-color','#F8F6CD');         
  },
  function () {
    $(this).css('background-color','');         
  }
);
/* Background-Color-Change */
$('.product_variant').hover(
  function () {
    $(this).css('background-color','#F8F6CD');         
  },
  function () {
    $(this).css('background-color','');         
  }
);
$('#basket tbody tr').hover(
  function () {
    $(this).css('background-color','#F8F6CD');         
  },
  function () {
    $(this).css('background-color','');         
  }
); 




/* VARIANT CLICKS */
$('.product_variant').click(
  function () {
    //alert($('#product_variants').find('.product_variant').length);
    $('#product_variants').find('.product_variant').removeClass('current');
   // $('#product_variants').find('.product_variant').css('margin','2px 12px 12px 2px');
    //$('#product_variants').find('.product_variant').css('background-color','');    
    
    
    
    $(this).addClass("current");
    
    
     
   // $(this).css('border','2px dotted #B4532C');
   // $(this).css('margin','0 10px 10px 0'); 
    //$(this).css('background-color','#F8F6CD');          
  }
);  
 




function select_variant(oxid, price, pageHead) {
  $('#aid').val(oxid);
  $('#anid').val(oxid);
  $('#price').text(price);
 // $('#pageHead').text(pageHead);
  $('#toBasket').removeAttr("disabled");
}
