$(document).ready(function () {
	$("#video_clips_holder .video_clip").click(function(){
		//$(this).find('.clip_image_holder').hide();
		var options = {
			player: 	$(this).find('.video_player'),
			title: 		$(this).find(".clip_title").html(),
			location: 	$(this).find(".clip_location").html(),
			video: 		$(this).find(".clip_video").html(),
			image: 		$(this).find(".clip_image").html(),
			copy_block: $(this).find(".clip_copy_block").html()
		};
				
		//unselect_videos();

		//$(this).animate({ width: 'hide' });
		//$(this).hide('blind', { direction: 'horizontal', duration: "slow" });

		$(this).addClass("selected_clip");

		load_video(options);
	});
	
	
	
	
	//setup_first_video();
});


function load_video(options){
	$(options.player).flash({
		swf: public_folder+"flash/video_player.swf",
		width: 530,
		height: 420,
		hasVersion: 9,
		expressInstaller: 'expressInstall.swf',
		flashvars: {
			video: options.video,
			image: options.image,
			autoplay: true,
			basePath: public_folder
		}
	});
	//pageTracker._trackPageview( "video_plays/" + options.title );
}