function videoLoader(video_url) {

	$('#vzaar_media_player').remove();
	var callback = function() {
	
		var flashvars = {
			border: "none",
			autoplay: "true"
		};
		var params = {
			wmode: "transparent"
		};
		var attributes = {
			wmode: "transparent"
		};
	
		var id = 'video_player' + Math.round(Math.random()*1000);
		
		$('#video').empty().append('<div id="' + id + '"></div>');
		
		$('#video').show();
		
		swfobject.embedSWF(video_url, id, 560, 329, "10.0.0", "/_swf/expressInstall.swf", flashvars,params,attributes);
	}
	if ($('#video_controls').length==0) {
		$('#fancy_close').append('<a id=\"video_controls\">Close video</a>');
	}

	if ($.browser.msie) {
		$('#fancy_close a').hover(
			function(){$(this).addClass('hover')},
			function(){$(this).removeClass('hover')}
			);
	}
	var direct_link=false;

			$(".open_video").fancybox({ 
			'width' : 560,
			'height' : 329,
			'onStart' : function() {callback();},
			'onCleanup': function() {$('#video').hide();}
		});
}

		


