/*
 * tabbed.js
 *
 * From: http://jqueryfordesigners.com/jquery-tabs/
 *
 * $Date: 2009-01-07 11:10:17 -0400 (Thu, 7 January 2009) $
 */
$(document).ready(function() {
	var tabContainers = $('div.tabs > div');
	tabContainers.hide().filter(':first').show();
	
	$('div.tabbedNav ul li a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		//$('div.tabs ul.tabNavigation a').removeClass('selected');
		$('div.tabbedNav ul li a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
});
						   
						   
						   
						   
						   

