(function($)
{
	$.fn.amTabs = function(){
		return this.each(function() {
			var $this = $(this);
			if($this.hasClass('ready'))
				return;
			var menuItems = $this.children('ul').children('li');
			menuItems.click(function(){
				var tabMenuItem = $(this);
				menuItems.removeClass('selected');
				tabMenuItem.addClass('selected');
				$this.children('div.selected').removeClass('selected');
				$this.children('div.index-'+tabMenuItem.index()).addClass('selected');
			});
			$this.addClass('ready');
		});
	};
	$(function(){
		$('div.tabs-container').amTabs();
	});
})(jQuery);

