( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
$.fn.tabs = function() {
var selector = this;
this.each(function() {
var obj = $(this);
$(obj.attr('href')).hide();
obj.click(function() {
$(selector).removeClass('selected');
$(this).addClass('selected');
$($(this).attr('href')).fadeIn();
$(selector).not(this).each(function(i, element) {
$($(element).attr('href')).hide();
});
return false;
});
});
$(this).show();
$(this).first().click();
};