

function changeVid(vid){

	if (vid.substring(0,7) != 'http://')
	{
		vid = '/media/upload/video/' + vid;
	}

	jwplayer().load({
		file: vid
	}).play();


}

function createPlayer(container, vid, slate) {

	jwplayer(container).setup({
		flashplayer: "/jwplayer/player.swf",
		file: vid,
		image: slate,
		width: 478,
		height: 272,
		controlbar: "bottom",
		stretching: 'fill',
		skin:'/jwplayer/skin/glow/glow.xml'
	});
}



function createProductPlayer(container, vid, slate) {

	jwplayer(container).setup({
		flashplayer: "/jwplayer/player.swf",
		file: vid,
		image: slate,
		width: 478,
		height: 272,
		controlbar: "bottom",
		stretching: 'fill',
		skin:'/jwplayer/skin/glow/glow.xml'
	});
}
