jQuery.fn.superSimpleTabs = function () {
	return this.each(function () {
		var ul = jQuery(this);
		
		// Go through all the in-page links in the ul
		ul.find('a[href^=#]').each(function (i) {
			var link = jQuery(this);

			// Hide all containers cept the first
			if (i) {
				jQuery(link.attr('href')).hide();
			}
			else {
				link.addClass('selected');
			}

			// When clicking link
			link.click(function () {
				// Hide selected link's containers
				jQuery(ul.find('a.selected').removeClass('selected').attr('href')).hide();

				// Show this one's
				jQuery(link.addClass('selected').attr('href')).show();

				return false;
			});
			
			$('h2#pyyda').click(function() {
				// Hide selected link's containers
				jQuery(ul.find('a.selected').removeClass('selected').attr('href')).hide();

				// Show this one's
				jQuery(link.addClass('selected').attr('href')).show();

				return false;
			});
			
			});
	});
};
