    $(function(){
      $('.thumbs a').click(function(){
      	var img = $('<img/>').attr('src', $(this).attr('href')).load(function(){
      		$(this).click(function(){
      			$('iframe').show();
      			$('#map img').remove();
      		});
			$('iframe').hide();
			$('#map img').remove();
			img.hide();
			$('#map').append(img);
			img.fadeIn();
      	});
      	return false;
      });
    });


	$(function(){
		$('#gallery a, .expanded').click(function(){
			$('.open').fadeOut();
			$(this).next().addClass('open').slideToggle('fast');
			return false;
		});
	});
