window.addEvent('domready', function(){

	$$('.thumb_gallery a').each(function(item){
		
		var img = item.get('href');
		
		item.addEvent('click', function(event){
			event.stop();
			loadImage(img);
			return false;
		});
		
	});
	
	var playMedia = $(new Swiff('swf/vidplayer.swf',
	{
		id: 'vidPlayer',
		width: 402,
		height: 251,
		container: 'player',
		params:{
			wmode: 'transparent'
		},
		vars:{
			chartype: 'cookie',
			video: '../flv/Sesame_Street_2010_200_Trailer_FINAL_092910_Hi-Res.flv',
			vidthumb: 'images/cookie/video_title.jpg'
		}
	}));

	function loadImage(path)
	{
		playMedia.loadImage(path);
		return false;
	}
	
});
