function showBio(whichBio)
{
	$('#'+whichBio).slideToggle(200);
}



$(document).ready(function()
{
	$('#bioTouchwood').hide();
	$('#bioShawn').hide();
	$('#bioDiane').hide();


	$('#navSubscribe').click(function() {

		var showIt = parseInt($('#newsletter').css('marginLeft'), 10) == 0;

		if (showIt)
		{	$('#navSubscribe').css('background-position', '0px -76px');
		}else
		{	$('#navSubscribe').css('background-position', '0px 0px');
			$('#navSubscribe').addClass('selected');
		}

		$('#newsletter').animate(
			{
				marginLeft: showIt ? $('#newsletter').outerWidth() : 0
			}, 200, 'swing');
	});
});


