$('document').ready(function(){
 $('.flashanchor').each(function(){
  var $t = $(this)
  var $exp = $t.find('.flashexpander');
  var $hold = $t.find('.flashholder');
  $exp.click(flashexpander);
 });
});

function flashexpander(){
 var $t = $(this)
 $t.text('Click here to close');
 $t.parent().addClass('open')
 $t.click(flashcontractor);
}
function flashcontractor(){
 var $t = $(this)
 $t.parent().removeClass('open')
 $t.text('Click here to enlarge');
 $t.click(flashexpander);
}
