
$(document).ready(function(){$('.timer-promo[fp!=""]').each(function(){timer_promo($(this));});$('.timerAffGauche[fp!=""]').each(function(){timer_gauche($(this));});function timer_gauche(obj){var date_fin_promo=obj.attr('fp');var id=obj.attr('class');if(date_fin_promo!=''){var format='HMS';var layout='<div class="content-menu-gauche">'+'<div  class="num-menu-gauche heure">{hnn}h</div>'+'<div  class="num-menu-gauche minute">{mnn}m</div>'+'<div  class="num-menu-gauche seconde">{snn}s</div>'+'<div  style="clear:both;"></div>'+'</div>';$('.'+id).countdown({until:date_fin_promo,format:format,layout:layout});}}
function timer_promo(obj){var date_fin_promo=obj.attr('fp');var id=obj.attr('id');if(date_fin_promo!=''){var format='DHMS';var layout='<div class="content-vente-flash">'+'<div  class="num-vente-flash jour">{dnn}&nbsp;<span class="jours">jour(s)</span>&nbsp;</div>'+'<div  class="num-vente-flash heure">{hnn}:</div>'+'<div  class="num-vente-flash minute">{mnn}:</div>'+'<div  class="num-vente-flash seconde">{snn}</div>'+'<div  style="clear:both;"></div>'+'</div>';$('.'+id).countdown({until:date_fin_promo,format:format,layout:layout});}}});


