$(function()
{
	$('.tabCollection .tabs .tab').click(function(e)
	{
		e.preventDefault();
		
		$this          = $(this);
		$tabCollection = $this.parents('.tabCollection');
		
		var contentSelector = $this.attr('href');
		
		// Hide all tab content.
		$tabCollection.find('.tabContent > .content, .tabs > .tab').removeClass('selected');
		$this.addClass('selected');
		$(contentSelector).addClass('selected');
	});
});
