$(function(){
$(".tabs-trigger").switchable(".tabs-panel > p");
});
$(function(){
$(".slide-trigger").switchable(".slide-panel > img", { effect: "fade", speed: .3 });
});
$(function(){
window.api = $(".scrollable-trigger").switchable(".scrollable-panel > div > img", {
triggerType: "click",
effect: "scroll",
steps: 3,
visible: 3,
api: true
});
$(".next").click(function(){
api.next();
});
$(".prev").click(function(){
api.prev();
});
});
©2010 IlikejQuery.com