$(function() {
	$('#photo_gallery a').lightBox();
});

$(document).ready(function () {
	$(".custjwplayer").click(function(){
		//$(this).children().eq(1).html(),
		if($(this).hasClass("playing")){
			$(this).removeClass("playing");
			$(this).children().eq(0).flash().remove();
			$(this).children().eq(1).show();
			//alert('a'+$(this).html());
		}
		else{
			var actsrc = $(this).children().eq(1).attr("src");
			var idx = actsrc.lastIndexOf(".");
			actsrc = actsrc.substr(0, idx) + "_act" + actsrc.substr(idx);
			$(this).addClass("playing");
			$(this).children().eq(1).hide();
			$(this).children().eq(0).flash({
				swf:'player.swf',
				height:$(this).children().eq(1).width(),
				width:$(this).children().eq(1).height(),
				flashvars: 'file='+$(this).children().eq(2).html()+'&icons=false&controlbar=none&autostart=true&image='+actsrc
			});
			//alert('b'+$(this).html());
		}
  });
});
