function gothere(){
				var FooterLinks=document.AdditionalFooterLinks
				location=FooterLinks.AdditionalFtList.options[FooterLinks.AdditionalFtList.selectedIndex].value}

function theRotator() {
	//Set the opacity of all images to 0
	$('div#rotator ul li').css({opacity: 0.0});
	
	//Get the first image and display it (gets set to full opacity)
	$('div#rotator ul li:first').css({opacity: 1.0});
		
	//Call the rotator function to run the slideshow, 6000 = change to next image after 6 seconds
	setInterval('rotate()',3500);
	
}

function rotate() {	
	//Get the first image
	var current = ($('div#rotator ul li.show')?  $('div#rotator ul li.show') : $('div#rotator ul li:first'));

	//Get next image, when it reaches the end, rotate it back to the first image
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div#rotator ul li:first') :current.next()) : $('div#rotator ul li:first'));	
	
	//Set the fade in effect for the next image, the show class has higher z-index
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);

	//Hide the current image
	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');
	
};

function ShowAllProducts(){$('#FullCatMenu').animate({height:'552'},1000);};
			
			function HighlightProductButton (){
			$("#AllProductsBut").removeClass("AllProductsButOff").addClass("AllProductsButOn");
			};
			function CloseProductCatDiv(){
					$('#FullCatMenu').animate({height:'0'},1000);
				};
			
			$(document).ready(function() {
									   
					$('#password-clearHrd').show();
					$('#password-passwordHrd').hide();
					
					$('#password-clearHrd').focus(function() {
						$('#password-clearHrd').hide();
						$('#password-passwordHrd').show();
						$('#password-passwordHrd').focus();
					});
					$('#password-passwordHrd').blur(function() {
						if($('#password-passwordHrd').val() == '') {
							$('#password-clearHrd').show();
							$('#password-passwordHrd').hide();
						}
					});
					
					$('#email-clear').show();
					$('#email-show').hide();
					
					$('#email-clear').focus(function() {
						$('#email-clear').hide();
						$('#email-show').show();
						$('#email-show').focus();
					});
					$('#email-show').blur(function() {
						if($('#email-show').val() == '') {
							$('#email-clear').show();
							$('#email-show').hide();
						}
					});
					

		$('#Kit5PieceBut').removeClass("JSSelectBut").addClass("KitButSelected");
		
		$('#Kit5PieceBut').click(function() {
			HideContProducts(); 
			$(this).removeClass("JSSelectBut").addClass("KitButSelected");
			$('#Kit5PieceContent, #Kit5PieceReviews').show();
		});
		$('#Kit3PieceBut').click(function() {
			HideContProducts(); 
			$(this).removeClass("JSSelectBut").addClass("KitButSelected");
			$('#Kit3PieceContent, #Kit3PieceReviews').show();
		});
		$('#CreateKitBut').click(function() {
			HideContProducts(); 
			$(this).removeClass("JSSelectBut").addClass("KitButSelected");
			$('#CreateKitContent, #KitCreateReviews').show();
		});
		function HideContProducts() {
			$('#SelectSystemContent, #CustomerReviewsWrapper').children().hide(); 
			$('#SelectSystemUL').children().removeClass("KitButSelected");
		}


					$('#MyAccountButHdr').click(
					function(){$('#LoginHdrBox').toggle("slow");}
					
					); 
					
				
	
					     
				$("#BestBuysBut").removeClass("FullCatMenuLi").addClass("highlight");
				
				$('#BestBuysBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#BestBuysDiv').show();
				});
				$('#DailyEssBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#DailyEssDiv').show();
				});
				$('#ProblemSolverBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#ProblemSolverDiv').show();
				});
				$('#OilControlBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#OilControlDiv').show();
				});
				$('#BodySolBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#BodySolDiv').show();
				});
				$('#MoreThanMoistBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#MoreThanMoistDiv').show();
				});
				$('#FlawlessBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#FlawlessDiv').show();
				});
				$('#TravelBut').click(function() {
					HideProducts();
					$(this).removeClass("FullCatMenuLi").addClass("highlight");
					$('#TravelDiv').show();
					
				});
				function HideProducts() {
				 $('#FullCatProductList').children().hide(); 
				$("li").removeClass("highlight");
				}
			});

