$(document).ready(function() {     
	
    $(document).bind('close.facebox', function() {   
   		setTimeout(function(){
	        $('#videoPlayer').remove();
		},200)
	});  
	
	$("a.play_video").facebox(); 
	
    $(document).bind('afterReveal.facebox', function() {
	
		var container = $('#facebox div.content div');
		var videoURL = $('a.video',container).attr('href');
		var imageURL = $('a.video img',container).attr('src');

		var flashvars = {
				videoURL: videoURL,
				imageURL: imageURL,
				AutoPlay: "false",
				downloadType: "progressive",
				HOSTNAME: ""
		};

		var params = {};

		var attributes = { 
			id: "videoPlayer",
			name: "videoPlayer"
		};

		container.attr({id:'facebox_video'});
		swfobject.embedSWF("/GirlscoutsAdultSite/swf/videoPlayer.swf", "facebox_video", "600", "338", "9.0.0", "/GirlscoutsAdultSite/swf/expressInstall.swf", flashvars, params, attributes);
	 	
	});  

});