jQuery.fn.log=function(msg){if(typeof console!='undefined'){console.log(msg);}
return this;};jQuery.fn.rotate=function(){var prods=$(this).find('.product');var prodId=0;var prodNum=prods.length;var prodNav=$(this).find('.promo-nav');var movePx=150;var moveDuration=500;prods.find('img').each(function(){var image=$(this);new Image().src=image.attr('src');});var html='';prods.each(function(i){html+='<li id="product-nav-'+i+'" title="'+$(this).find('h3').text()+'">'+(i+1)+'</li>';});prodNav.html(html).find('#product-nav-0').addClass('active');setInterval(function(){var prevProd=$('#promo').find('.product').eq(prodId);prodNav.find('#product-nav-'+prodId).removeClass('active');if(++prodId>=prodNum){prodId=0;}
var nextProd=$('#promo').find('.product').eq(prodId);prevProd.animate({'left':movePx+'px','opacity':0},moveDuration,function(){prevProd.hide();prodNav.find('#product-nav-'+prodId).addClass('active');nextProd.show();nextProd.css({'left':(-movePx)+'px','opacity':0});nextProd.animate({'left':'0','opacity':1},moveDuration,function(){nextProd.css('filter','');});});},5000);};