$(document).ready(function()
	{

		// Hide all scrollers
		$('div.tnScroll').hide();
		
		
		// Article images show and tell		
		$('div#images div.image').hide();
		$('div#images div.dotNav').show();			
		$('div#images div:first').show();
		$('div#images div.dotNav a:first').addClass('activeSlide');
		
		$('div#images div.dotNav a').click(function()
		{
			var pick = $(this).attr('href');
			$('div#images div.image').hide();
			$('div#images div' + pick).fadeIn();
			$('div#images div.dotNav a').removeClass('activeSlide');
			$(this).addClass('activeSlide');
			$(this).blur();
			return false;
		});
		
		
		// Forgot password toggle
		$('div#forgot').hide();
		$('div.form a#forgotLink').click(function(){
			$('div#forgot').slideToggle();
			$('div#forgot input#fEmail').focus();
			return false;
		});
		
		
	}
);

$(window).load(function()
{

	// Show all scrollers
	$('div.tnScroll, img.scrollNext, img.scrollPrev').show();			

	// Footer thumbnail carousel
	$('#footerThumbs').jCarouselLite({
    	btnNext: "img#stNext",
    	btnPrev: "img#stPrev",
    	visible: 5
   	});


});