﻿var TriggerTips={handle:null,init:function(a){TriggerTips.handle=a;$(".buttons .next",a.container).bind("click",function(b){if(TriggerTips.handle!=null){TriggerTips.handle.next()}return false});$(".buttons .prev",a.container).bind("click",function(b){if(TriggerTips.handle!=null){TriggerTips.handle.prev()}return false})},bind:function(){$(".triggerTips").jcarousel({initCallback:TriggerTips.init,scroll:1,buttonNextHTML:null,buttonPrevHTML:null})},cleanDom:function(){if(TriggerTips.handle!=null){TriggerTips.handle.destroy();TriggerTips.handle=null}}};