function EMBED(thumb, clip) {
	return '<object width="400" height="300" data="http://kanobu.ru/flowplayer/flowplayer.commercial-3.2.0.swf" type="application/x-shockwave-flash"><param name="movie" value="http://kanobu.ru/flowplayer/flowplayer.commercial-3.2.0.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value=\'config=' + JSON.stringify({
		"key":"#@a38baa27b1f0d15312e",
		
		"logo":{
			"url":"http://kanobu.ru/img/fp_logo.png",
			"fullscreenOnly":false,
			"top":6,
			"right":5,
			"linkUrl":"http://kanobu.ru"
		},
		
		"clip":{
			"scaling":"fit",
			"url": clip
		},
		
		"canvas":{
			"backgroundColor":"#000000",
			"backgroundGradient":"none"
		},
		
		"play":{
			"width":600,
			"height":400,
			"opacity":0
		},
		
		"plugins":{
			"controls":{
				"url":"http://kanobu.ru/flowplayer/flowplayer.controls-3.2.0.swf",
				"backgroundColor":"transparent",
				"backgroundGradient":"none",
				"sliderColor":"#FFFFFF",
				"sliderBorder":"1px solid rgba(160,160,160,0.7)",
				"volumeSliderColor":"rgba(50, 50, 50, 1)",
				"volumeBorder":"1px solid rgba(160,160,160,0.7)",
				"timeColor":"#ffffff",
				"durationColor":"#535353",
				"fullscreen":true,
				"border":"none",
				"hideDelay":1000,
				"all":false,
				"enabled":{"scrubber":true},
				"scrubber":true,
				"volume":true,
				"play":true,
				"mute":true,
				"playlist":false,
				"height":30,
				"scrubberHeightRatio":0.4,
				"volumeSliderHeightRatio":0.4,
				"progressColor":"#47ff91",
				"volumeColor":"#47ff91",
				"bufferColor":"rgba(163, 163, 163, 0.4)",
				"buttonOverColor":"#47ff91",
				"tooltipColor":"#ffffff",
				"tooltipTextColor":"#000000",
				"autoHide":"always",
				"bottom":5,"left":"50pct"
			}
		},
			
		"playlist":[
			{
				"controls":{
					"scrubber":false,
					"volume":false,
					"fullscreen":false,
					"play":false,
					"mute":false
				},
				
				"url":thumb
			},
			
			{
				"autoPlay":false,
				"scaling":"fit",
				"url": clip
			}
		]
	}) + '\' /></object>';
}

function EMBED_AUDIO(clip) {
	return '<object width="400" height="31" data="http://kanobu.ru/flowplayer/flowplayer.commercial-3.2.0.swf" type="application/x-shockwave-flash"><param name="movie" value="http://kanobu.ru/flowplayer/flowplayer.commercial-3.2.0.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value=\'config=' + JSON.stringify({
	"key":"#@a38baa27b1f0d15312e",

	"clip":{
		"autoPlay":false,
		"scaling":"fit",
		"url": clip
	},

	"canvas":{
		"backgroundColor":"#000000","backgroundGradient":"none"
	},

	"play": {
		"label":null,
		"replayLabel":null,
		"opacity":0
	},

	"plugins":{
		"audio":{
			"url":"http://kanobu.ru/flowplayer/flowplayer.audio-3.2.0.swf"
		},
		"controls":{
			"url":"http://kanobu.ru/flowplayer/flowplayer.controls-3.2.0.swf",
			"backgroundGradient":"none",
			"backgroundColor":"transparent",
			"background":"#114455 url(http://static.kanobu.ru/kanobu/modern/skin/kanobu-ver_0.4/img/audio_bg.jpg) no-repeat top center",
			"height":30,
			"border":"none",
			"hideDelay":1000,
			"all":false,
			"enabled": {
				"scrubber": true
			},
			"scrubber":true,"volume":true,
			"play":true,"mute":true,
			"playlist":false,
			"fullscreen":false,
			"time":true,
			"scrubberHeightRatio":0.4,
			"volumeSliderHeightRatio":0.4,
			"progressColor":"#47ff91",
			"volumeColor":"#47ff91",
			"bufferColor":"rgba(163, 163, 163, 0.4)",
			"volumeSliderColor":"rgba(50, 50, 50, 1)",
			"buttonOverColor":"#47ff91",
			"tooltipColor":"#ffffff",
			"tooltipTextColor":"#000000",
			"autoHide":"never",
			"bottom":0,
			"left":"50pct"
		}
	}}) + '\' /></object>';
}

function EMBED_GALLERY(gallery_id){
	$.get('/gallery/embed-code/' + gallery_id + '/', function(data){
		$("textarea[id=embed_code_other]").text(data);
	});
}

