//选项卡
$(document).ready(function(){
    $('.tabset').each(function(){
        var obj = $(this);
        obj.find('.tab li').hover(function(i){
            $(this).parent().find('li > a').removeClass('on');
            $(this).find('a').addClass('on');
            obj.find('.tabpage').hide();
            obj.find('.tabpage:eq('+ $(this).index() +')').show();
            if(typeof($.fn.lazyload) == 'function'){
                obj.find('.tabpage:eq('+ $(this).index() +') img').trigger("appear");
            }
        }).css('cursor','pointer');		   
    });
});

