$(function () {
	$("video").each(function () {
		var id = $(this).attr("id");
		if (!id) {
			throw "You need to provide an id for the video";
			return;
		}
		jwplayer(id).setup({
			width: $(this).attr("width"),
			height: $(this).attr("height"),
			skin: "/jwplayer/skewd/skewd.zip",
			modes: [
		        {type: 'flash', src: '/jwplayer/player.swf'},
		        {type: 'html5'},
		        {type: 'download'}
	       ]
		});		
	})
});

