$(function(){
	
	player_url = 'http://www.komodofireworks.com/player.php?';
	
	$.each($('a[href$=.flv]'),function(){
		$(this).addClass('thickbox').click(function(){
			var a = player_url+'&flv_url='+this.href+'&'+this.rel+'&title='+this.title+'&placeValuesBeforeTB_=savedValues&TB_iframe=true';
			tb_show(this.title || this.name || this.alt || null,a,false);
			this.blur();
			return false;
		});
	});
})