function boletines(){
	error = "";
	if (document.bol.nombre.value == "Nombre"){ error = error + "Debe escribir su nombre\n"; }
	if (document.bol.email.value == "E-mail"){ error = error + "Debe escribir su correo electrónico\n"; } else { validar_mail(); }
	if (error != ""){
		alert(error);
	} else {
		document.bol.submit();
	}	
}
function validar_mail(){
	reg=/(\S+\@\S+(\.\S+)+)|(^[ \t]*$)/;
	if (! reg.exec(document.bol.email.value)){
		error = error + "El \"Email\" introducido no es correcto\n"
	}
}
$(function(){
	$('#pestana0').click(function(){
		$('#sec1').hide();
		$('#sec0').animate({ opacity: 'show', show: 'toggle' }, "slow");
		$('#botones_perros').css("background-position","top");

	});
	$('#pestana1').click(function(){
		$('#sec0').hide();
		$('#sec1').animate({ opacity: 'show', show: 'toggle' }, "slow");
		$('#botones_perros').css("background-position","bottom");
	});
	
  	// lightbox activation
		$('a[rel*=facebox]').facebox({
		  next_image    : '/images/icons/small/fast_forward.png',
		  play_image    : '/images/icons/small/play.png',
		  pause_image   : '/images/icons/small/pause.png',
		  prev_image    : '/images/icons/small/rewind.png'
		})
});