function playVideo(id) {
	
	var titles = new Array();
	titles['390551829001'] = "Dr. Daniel Talks About: Why You Should See Him";
	titles['390558466001'] = "Dr. Daniel Talks About: Smile Makeovers";
	titles['390558435001'] = "Dr. Daniel Talks About: His Philosophy";
	titles['390551817001'] = "Dr. Daniel Talks About: Optimal Dental Health";
	titles['309175064001'] = "Welcome Video";
	titles['309148035001'] = "TV Commercial";
	titles['309153399001'] = "What Our Guests Say: Colleen's Story";
	titles['309175111001'] = "What Our Guests Say: Khal's Story";
	titles['309198177001'] = "What Our Guests Say: Darlene's Story";
	titles['309153405001'] = "What Our Guests Say: Carrie's Story";
	titles['309153399001'] = "What Our Guests Say: Colleen's Story";
	
	$("#video-player-container").html(
		"<h2><span class=\"now-playing\">Now Playing:</span> " + titles[id] + "</h2>\n" +
		"<object id=\"flash\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"455\" height=\"310\">\n" +
		"<param name=\"movie\" value=\"../assets/fla/video_player.swf?videoId=" + id + "&amp;title=" + encodeURIComponent(titles[id]) + "&amp;autoplay=true\" />\n" +
		"<param name=\"allowFullScreen\" value=\"true\" />\n" +
		"<!--[if !IE]>-->\n" +
		"<object type=\"application/x-shockwave-flash\" data=\"../assets/fla/video_player.swf?videoId=" + id + "&amp;title=" + encodeURIComponent(titles[id]) + "&amp;autoplay=true\" width=\"455\" height=\"310\">\n" +
		"<param name=\"allowFullScreen\" value=\"true\" />\n" +
		"</object>\n" +
		"<!--<![endif]-->\n" +
		"</object>"
	);
}
