$(function() {
	// /exhibition/
	$('.piece .content').hide();
	$('.piece .thumbnail').show();

	$('.piece')
		.css({
			width: '110px',
			clear: 'none'
		}).hover(
			function() {
				$(this).addClass('over');
			},
			function() {
				$(this).removeClass('over');
			}
		).click(
			function() {
				var piece_content = $(this).find('.content').html();
				jQuery.facebox(piece_content);
				$('td.bl, td.br, td.tl, td.tr').ifixpng();
			}
		);
	
	$('.video_link')
		.css('display', 'block')
		.hover(
			function() {
				$(this).addClass('over');
			},
			function() {
				$(this).removeClass('over');
			}
		).click(
			function() {
				if ($(this).is('.blue_birches') || $(this).is('.parent_project')) {
					jQuery.facebox(
						'<div id="video_container">We are sorry, but Flash is not avaiable on your machine. Please <a href="http://www.adobe.com/go/getflashplayer">click here</a> to download.</div>' + 
						$(this).find('.content').html()
					);
					$('td.bl, td.br, td.tl, td.tr').ifixpng();
					
					if ($(this).is('.blue_birches')) {
						swfobject.embedSWF("/sup/flash/linear_collage/player.swf", "video_container", "400", "300", "9");
					}
					if ($(this).is('.parent_project')) {
						swfobject.embedSWF("/sup/flash/parent_project/player.swf", "video_container", "400", "300", "9");
					}
				}
			}
		)
	
	
})