$ef(document).ready(function()	
	{
	// slider
	$ef('#one').hide();
	$ef('#two').hide();
	$ef('#three').hide();
	
	$ef('#one-btn').toggle(function()
		{
			// $ef('html, body').animate({scrollTop:0}, 'slow');
			$ef('#two').hide();
			$ef('#three').hide();
			$ef('#two-btn').removeClass('on');
			$ef('#three-btn').removeClass('on');
			$ef('#one:hidden').slideDown();
			$ef('#one-btn')[0].blur();
			$ef(this).addClass('on');
			return false;
		},
		function()
		{
			$ef('#one:visible').slideUp();
			$ef('#one-btn')[0].blur();
			$ef(this).removeClass('on');
			return false;
		}
	);
	
	$ef('#two-btn').toggle(function()
		{
			// $ef('html, body').animate({scrollTop:0}, 'slow');
			$ef('#one').hide();
			$ef('#three').hide();
			$ef('#one-btn').removeClass('on');
			$ef('#three-btn').removeClass('on');
			$ef('#two:hidden').slideDown();
			$ef('#two-btn')[0].blur();
			$ef(this).addClass('on');			
			return false;
		},
		function()
		{
			$ef('#two:visible').slideUp();
			$ef('#two-btn')[0].blur();
			$ef(this).removeClass('on');
			return false;
		}
	);
	
	$ef('#three-btn').toggle(function()
		{
			// $ef('html, body').animate({scrollTop:0}, 'slow');
			$ef('#one').hide();
			$ef('#two').hide();
			$ef('#one-btn').removeClass('on');
			$ef('#two-btn').removeClass('on');
			$ef('#three:hidden').slideDown();
			$ef('#three-btn')[0].blur();
			$ef(this).addClass('on');			
			return false;
		},
		function()
		{
			$ef('#three:visible').slideUp();
			$ef('#three-btn')[0].blur();
			$ef(this).removeClass('on');
			return false;
		}
	);
});