nb_move_available=null;current_move=0;next_scene_is_at_right=true;function loadScene(id_scene){$('#scenes').find('.screen_scene:visible').fadeTo(300,0,function(){$(this).hide();$('#scenes').find('#screen_scene_'+id_scene).css('opacity','0').show().fadeTo(500,1);});return false;}
function onSceneMove(){if(next_scene_is_at_right)current_move++;else current_move--;if(current_move==nb_move_available-1)$('#scenes .next').fadeOut();else $('#scenes .next:hidden').fadeIn().css('display','block');if(current_move==0)$('#scenes .prev').fadeOut().css('display','block');else $('#scenes .prev').fadeIn().css('display','block');return true;}
$(function(){var ul_width=parseInt($('#scenes_list ul').width());var div_width=parseInt($('#scenes_list').width());nb_move_available=Math.ceil((ul_width-div_width)/li_width)+1;if(nb_move_available<2)
$('#scenes .next').hide();$('a.cluetip').cluetip({local:true,cursor:'pointer',cluetipClass:'product_scene',dropShadow:false,dropShadowSteps:0,showTitle:false,tracking:true,sticky:false,mouseOutClose:true,closeText:i18n_scene_close,fx:{open:'fadeIn',openSpeed:'fast'}}).css('opacity',0.8);$('#scenes_list').serialScroll({items:'a',duration:1000,lock:false,axis:'x',cycle:false,force:true,lazy:true,step:1,onBefore:onSceneMove});$('#scenes_list').trigger('goto',0);});