$(document).ready(function(){
  $("#rotator ul li").each(function(){
    if($(this).find(".special").hasClass("on")){
      $(this).find(".normalPrice").wrap("<del />");
    }else{
      $(this).find(".special").hide();
      $(this).find(".specialSeparator").hide();
    }
  });
  $("#slideShow ul li").each(function(){
    if($(this).find("a").attr("href") == ""){
        $(this).find("img").unwrap();
    }
  });
  
  $("#rotator").rotator({
    previous: ".previousItem",
    next: ".nextItem", 
    change: function(item){
      $("#rotator .buyItem").attr("href",$(item).find("h2 a").attr("href"));
    }
  });
  $("#slideShow").rotator({
    previous: ".leftArrow a",
    next: ".rightArrow a",
    duration: 1000,
    distance: 900,
    fade: false,
    interval: 6000,
    showDelay: 0
  });
  
//    $("#rightAd").cycle({
//    fx: "fade",
//    prev: ".leftArrow a",
//    next: ".rightArrow a",
//    timeout: 10000
//  });
});
