function createPopupPlayer(link) {
	return hs.htmlExpand(link, {
		objectType: 'swf', 
		swfOptions: {
			version: '9', 
			flashvars: { 
				file: '/videos/video1.flv',
				stretching: "fill",
				autostart: "true",
				controlbar: "none"
			}, 
			params: {
				allowscriptaccess: 'always', 
				allowfullscreen: 'true', 
				wmode: 'transparent'
			} 
		},
		width: 512, 
		objectWidth: 512, 
		objectHeight: 384, 
		wrapperClassName: 'draggable-header no-footer', 
		allowSizeReduction: false, 
		maincontentText: 'You need to upgrade your Flash player'
	});
}

$(function () {
	hs.graphicsDir = 'inc/video/highslide/graphics/';
	hs.outlineType = 'rounded-white';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.fadeInOut = true;
	hs.dimmingOpacity = 0.75;
	
	$("a.video-player").click(function() {
		return createPopupPlayer(this);
	});
});

