$j(document).ready(function(){

	$j('#assistant1 .assistantbtn').click(function()
	{
		sCookieValue = null;
		sAlt = $j(this).attr('alt');
		switch(sAlt)
		{
			case 'The Brit':
				sCookieValue = 'brit';
				break;
			case 'The Starlet':
				sCookieValue = 'star';
				break;
			case 'The Surfer':
				sCookieValue = 'surf';
				break;
		}

		if(sCookieValue)
		{
			$.cookie('persona', sCookieValue);
		}
		
		return false;
	});
});
