/**
 * @author dave
 */

var _bridge = '';

document.observe('dom:loaded', init);

function init(){
	
	
var _thumbs = Selector.findChildElements($('portfolio-thumbnails'), ['span']);

_thumbs.each(function(_el){
	_el.observe('click', clickHandler.bindAsEventListener(this, _el.readAttribute('rel')))
})
	
	
}

function clickHandler(_evt, _content){

	$('flash-wrap').innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="300" height="214" id="portfolio-container"><param name="movie" value="'+_content+'"><param name="wmode" value="transparent"><embed href="'+_content+'" wmode="transparent" width="300" height="214" name="" src="'+_content+'"></embed></object>';
}



