/**
 * bwTab
 * Copyright (c) 2009
 * Author: Predrag Krstic
 */
(function($){
    $.fn.bwtab = function(options) {
		var defaults = {
			selectedTab: 'sel',
			tabContent: '.tabContent'
		};
		
		var opts = $.extend(defaults, options);
		
		return this.each(function() {	
			$('a', this).click(function(e){
				$(this).siblings().removeClass(opts.selectedTab);
				$(this).addClass(opts.selectedTab);
				$(opts.tabContent).hide();
				var id = $(this).attr('href');
				$(id).show();
				return false;
			});
        });
    };
})(jQuery);
