var selectedTab = "#tab1";
			$(function(){
				// Tabs
				$('#safetyTabs').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
				
				//$('#link1').click(function() {
//					$('#tab1').animate({ top:"10px" });
//					$(selectedTab).animate({ top:"3px" });
//					selectedTab = "#tab1";
//				});
//				$('#link2').click(function() {
//					$('#tab2').animate({ top:"10px" });
//					$(selectedTab).animate({ top:"3px" });
//					selectedTab = "#tab2";
//				});
//				$('#link3').click(function() {
//					$('#tab3').animate({ top:"10px" });
//					$(selectedTab).animate({ top:"3px" });
//					selectedTab = "#tab3";
//				});
//				$('#link4').click(function() {
//					$('#tab4').animate({ top:"10px" });
//					$(selectedTab).animate({ top:"3px" });
//					selectedTab = "#tab4";
//				});
				
				$('#link1').click(function() {
					$('#tab1 a').animate({ color:'#000' });
					$(selectedTab+' a').animate({ color:'#555' });
					selectedTab = "#tab1";
				});
				$('#link2').click(function() {
					$('#tab2 a').animate({ color:'#000' });
					$(selectedTab+' a').animate({ color:'#555' });
					selectedTab = "#tab2";
				});
				$('#link3').click(function() {
					$('#tab3 a').animate({ color:'#000' });
					$(selectedTab+' a').animate({ color:'#555' });
					selectedTab = "#tab3";
				});
				$('#link4').click(function() {
					$('#tab4 a').animate({ color:'#000' });
					$(selectedTab+' a').animate({ color:'#555' });
					selectedTab = "#tab4";
				});
				
			});