// Global settings

$(document).ready(function() {
			var tabContainers = $('div#tabs > div');
			tabContainers.hide().filter(':first').show();
			
			$('div#tabs ul a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();	
				$('div#tabs ul a').removeClass('active');
				$(this).addClass('active');
				
				if(tab != "") {
        //alert(tab);
        tabContainers.hide();
        tabContainers.filter('#' + tab).show();
        
        $('div#tabs ul a').removeClass('active');
        
				$('anchor-'+ tab).addClass('active');
				document.getElementById('anchor'+ tab).className = 'active';
				//alert('anchor-'+ tab);
        tab = '';
      }
				
				return false;
			}).filter(':first').click();
		});