$(document).ready(function() {
	var videoName = $('#video_name').val();
	initVideo(videoName);
});

initVideo = function(videoName) {
	var media_url = $('#media_url').val();
	var api = flashembed("display", 
		{
			src : media_url + '/video/FlowPlayerDark.swf',
			width : 486, 
			height : 364
		},
		{ 
			config: {   
				autoPlay : true,
				autoBuffering : true,
				controlBarBackgroundColor : '0x2e8860',
				initialScale : 'scale',
				playList : [ 
					{ url : media_url + '/images/bottles_video.jpg', overlayId: 'play' },
					{ url : media_url + '/video/' + videoName + '.flv' }
				],
				loop : false,
				autoRewind : true
			}
		} 
	);	
};