$(function() {
	$("#formulario").submit(function(){
		var day = $("#dd").val();
		var month = $("#mm").val();
		var year = $("#yyyy").val();
		var age = 18;
	
		var mydate = new Date();
		mydate.setFullYear(year, month-1, day);
		var currdate = new Date();
		currdate.setFullYear(currdate.getFullYear() - age);
		if ((currdate - mydate) < 0){
			alert("Sorry, only persons over the age of " + age + " may enter this site");
			return false;
		}

		if (year == "" || day == "" || month == ""){
			//alert("Sorry, only persons over the age of " + age + " may enter this site");
			return false;
		}
		return true;
	});
	
	$("a.example1").fancybox({	
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.3,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	$('.slideshow img:first').fadeIn(1000, function() {		
		$('.slideshow').cycle({
			fx:	'fade',
			timeout: 5000
		});
	});	
	
	$('.slideshowgift img:first').fadeIn(1000, function() {		
		$('.slideshowgift').cycle({
			fx:	'fade',
			timeout: 8000,
			speed:  '800', 
	        pager:  '#navigator2',
			slideExpr: 'img'
		});
	});
	
});

function loguear() {
	$.post('login.php', {usuario: $('#usuario').val(), clave: $('#clave').val() }, function(data){ $('#form_logueado').html(data)});
	return false;
}
