function playVideo(videoName)
	{
		$('#pageContainer').fadeOut('fast', function()
			{
				$('#jwPlayerContainer').fadeIn('fast', function()
					{
						jwplayer("jwPlayer").setup(
							{
								autostart: true,
								controlbar: "bottom",
								file: "./video/" + videoName + ".mp4",
								flashplayer: "./jwplayer/player.swf",
								volume: 80,
								width: 640,
								height: 480
							}
						);
					}
				);
			}
		);
	}
