$(document).ready(function(){
	
	/*-------------------------------------------------------
		Inicializacionb pngfix para IE6
	-------------------------------------------------------*/
	if($.browser.msie && $.browser.version < 7){
		if (DD_belatedPNG) {
			DD_belatedPNG.fix('.pngfix');
		}
	}
	
	/*-------------------------------------------------------
		Restringe el ingreso de caracteres no permitidos
		para el email
	-------------------------------------------------------*/
	$(".emailFormato").keypress(function(evt){
		var key = evt.keyCode ? evt.keyCode : evt.which ;
		return ( (key >= 45 && key <= 57) || (key >= 65 && key <= 90) || (key >= 97 && key <= 122) || (key == 64) || (key == 8) || (key == 95) );
	});
	
	$('#aprendeaqui, #consejos, #diploma, #descargas2, #productos, #subirFotos').click(function(){
		
		$('#fancybox-content').css('overflow','visible');
		setTimeout(function(){
			$('#fancybox-content').find('div:first').css('overflow','visible');
    	}, 50);

	});

	/*-------------------------------------------------------
		Fancybox
	-------------------------------------------------------*/
	$("#verFotos").fancybox({
		overlayColor		: '#000000',
		overlayOpacity		: 0.5,
		width				: 784,
		height				: 605,
		centerOnScroll		: true,
		autoDimensions		: false,
		autoScale 			: false,
		padding				: 0,
		scrolling			: 'no',
		transitionIn		: 'none',
		transitionOut		: 'none'
	});

	$("#catalogo").fancybox({
		overlayColor		: '#000000',
		overlayOpacity		: 0.5,
		width				: 784,
		height				: 605,
		centerOnScroll		: true,
		autoDimensions		: false,
		autoScale 			: false,
		padding				: 0,
		scrolling			: 'no',
		transitionIn		: 'none',
		transitionOut		: 'none'
	});
			$("a[rel=example_group]").fancybox({
				'opacity'			: true,			
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});	
	
});

function iniciarJuegos(){

	$('.verJuego').click(function(){
		$('#fbBloque').hide();
		$('#juego'+$(this).next('.juegoNumero').val()).fadeIn(500);
		return false;
	});
}
function iniciarEnviarCorreo(){
	$('#enviar').click(function(){
		if($('#nombre').val() == "" || $('#email').val() == "" || $('#colegio').val() == "" || $('#comentario').val() == ""){
			$('.errorFormulario').fadeIn();
		}else{
			$('.errorFormulario').fadeOut();
			$.post('s/index.php',{nombre:$('#nombre').val(),email:$('#email').val(),colegio:$('#colegio').val(),comentario:$('#comentario').val()},function(data){
				if(data == "OK"){
					$('#enviar').hide();
					$('.exitoFormulario').show();
					setTimeout(function(){
						$.fancybox.close()
					},2000);
				}
			});
		}
	});	
}

