// JavaScript Document
		
		// TABS
		$(document).ready(function() {
		// setting the tabs in the sidebar hide and show, setting the current tab
			$('div.tabbed div').hide();
			$('div.t1').show();
			$('div.tabbed ul.tabs li.t1 a').addClass('tab-current');
		// SIDEBAR TABS
		$('div.tabbed ul.tabs li a').click(function(){
			var thisClass = this.className.slice(0,2);
			if (!thisClass) {
				thisClass = 't1';
				$('div.tabbed div').hide(); 
				$('div.' + thisClass).show();
				$('div.tabbed ul.tabs li a').removeClass('tab-current');
				$('div.tabbed ul.tabs li.t1 a').addClass('tab-current'); 
				
			} else {
				$('div.tabbed div').hide();
				$('div.' + thisClass).show();
				$('div.tabbed ul.tabs li a').removeClass('tab-current');
				$(this).addClass('tab-current'); 
				}
			});
			return false;			
		}); 
		
		$(document).ready(function() {
		// setting the tabs in the sidebar hide and show, setting the current tab
			$('div.tabbed2 div').hide();
			$('div.t5').show();
			$('div.tabbed2 ul.tabs2 li.t5 a').addClass('tab-current2');
		// SIDEBAR TABS
		$('div.tabbed2 ul li a').click(function(){
			var thisClass = this.className.slice(0,2);
			$('div.tabbed2 div').hide();
			$('div.' + thisClass).show();
			$('div.tabbed2 ul.tabs2 li a').removeClass('tab-current2');
			$(this).addClass('tab-current2');
			});
		});
		
		$(document).ready(function() {
		// setting the tabs in the sidebar hide and show, setting the current tab
			$('div.tabbed3 div').hide();
			$('div.t8').show();
			$('div.tabbed3 ul.tabs3 li.t8 a').addClass('tab-current3');
		// SIDEBAR TABS
		$('div.tabbed3 ul li a').click(function(){
			var thisClass = this.className.slice(0,2);
			$('div.tabbed3 div').hide();
			$('div.' + thisClass).show();
			$('div.tabbed3 ul.tabs3 li a').removeClass('tab-current3');
			$(this).addClass('tab-current3');
			});
		});
		

