document.observe('dom:loaded', function() {
	$('evolution-form').observe('click', showAjaxFormEvolution);
	$('evolution-form-img').observe('click', showAjaxFormEvolution);
});



function showAjaxFormEvolution(event) {
	Event.stop(event);
	Lightview.show({
		href: 'evolution-of-scanner/show_box.php',
		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);
				}
			}
		}
	});
}
