$(document).ready(function(){
		var dataForm=$('#dataForm');
		jqControllerFuncs.Animation();});
		var jqControllerFuncs={
			Animation:function(){
				$("#ampliar").lightBox();
				$('#slideshow').cycle({
					fx:'fade',
					speedIn:1000,
					speedOut:400,
					sync:true,
					timeout:10000,
					easing:'easeOutCubic',
					next:'#imagen_siguiente',
					prev:'#imagen_anterior',
					before: jqControllerFuncs.onBefore					});},
			onBefore:function(){
				$('#ampliar').attr('href',this.src);
			}
		}
