var cur_more_open = false

function more(id){
	close();
	cur_more_open = id;
	Effect.Appear('more_'+id,{ duration: .5 });
}

function close(){
	if(cur_more_open){
		Effect.Fade('more_'+cur_more_open,{ duration: .5 });
		cur_more_open = false;
	}
}

function buy(id){
	window.open('http://holdmyticket.com/mini/mini.php?id='+id, 'new', 'height=600,width=600,status=yes,scrolling=yes,scrollbars=yes,resizable=yes');
}


function showFullBio(bioIndex){
	if($('bio_full_'+bioIndex).style.display=='none'){
		$('bio_summary_'+bioIndex).blindUp();
		$('bio_full_'+bioIndex).blindDown();
		$('readBioLink_'+bioIndex).update('hide full bio');
	}else{
		$('bio_summary_'+bioIndex).blindDown();
		$('bio_full_'+bioIndex).blindUp();
		$('readBioLink_'+bioIndex).update('read full bio');
	}
}