$("a#openvideo").fancybox({
	'autoDimensions' : false,
	'width' : 640,
	'height' : 385,
	'content' : '<div id="mediaspace"></div>',
	'overlayColor' : '#000',
	'titleShow' : false,
	'onComplete' : function() { startVideo(); },
	'onCleanup' : function() { $('#mediaspace').html(''); }
});

function startVideo(){
	jwplayer('mediaspace').setup({
		'flashplayer': '/wp-content/themes/foodconnect/js/jwplayer/player.swf',
		'file': 'http://www.foodconnect.nl/video/fcintro.flv',
		'autostart': 'true',
		'controlbar': 'bottom',
		'width': '640',
		'height': '385'
	});
}

$("a#openshopvideo").fancybox({
	'autoDimensions' : false,
	'width' : 640,
	'height' : 385,
	'content' : '<div id="mediaspaceshop"></div>',
	'overlayColor' : '#000',
	'titleShow' : false,
	'onComplete' : function() { startVideoShop(); },
	'onCleanup' : function() { $('#mediaspaceshop').html(''); }
});

function startVideoShop(){
	jwplayer('mediaspaceshop').setup({
		'flashplayer': '/wp-content/themes/foodconnect/js/jwplayer/player.swf',
		'file': 'http://www.foodconnect.nl/video/fcintroshop.flv',
		'autostart': 'true',
		'controlbar': 'bottom',
		'width': '640',
		'height': '385'
	});
}
