// JavaScript Document

document.observe('dom:loaded', function() {
	$('demo_ajax8').observe('click', showAjaxFormDemonstration8);
});


function showAjaxFormDemonstration8(event) {
	Event.stop(event);
	Lightview.show({
		href: '../includes/Form_GaleriaVideo.asp',
		rel: 'ajax',
		options: {
			autosize: true,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				//$('ajaxForm').observe('submit', submitAjaxFormDemonstration);
				}
			}
		}
	});
}



