$(document).ready(function(){
						   
	/* PNGFIX */
	$(document).pngFix();
						   
	/* ROTA LAS IMAGENES DE ABAJO SOLO EN EL HOME */
	var images = 4;	var current = 1;
	window.setInterval(function(){
		$("#banner-rot #img" + current).fadeOut("slow");
    	current = (current >= images) ? 1 : current + 1;
    	$("#banner-rot #img" + current).fadeIn("slow");
	},10000);
	
	var citas = $('#cite blockquote').length; var actual = 1;
	if (citas > 1){
		window.setInterval(function(){
			$("#cite #p" + actual).fadeOut("slow");
			actual = (actual >= citas) ? 1 : actual + 1;
			$("#cite #p" + actual).fadeIn("slow");
		},10000);
	}
	
	function menu(n){
		$('a#mnu'+n).addClass('active'+n);
	}
			
	/* VALIDACION DEL FORM */
    $("form#register-form").submit(function(){
  		var err = false;
		if ($("#cp1").val() == ""){
			alert("First Name is Required");
			err = true;
		}
		if ($("#cp2").val() == "" && err != true){
			alert("Last Name is Required");
			err = true;
		}
		if ($("#cp3").val() == "" && err != true){
			alert("Telephone Number is Required");
			err = true;
		}
		if ($("#cp4").val() == "" && err != true){
			alert("Email Address is Required");
			err = true;
		}
		if ($("#cp6").val() == "" && err != true){
			alert("General Question is Required");
			err = true;
		}
		if ($("#security_code").val() == "" && err != true){
			alert("Security Code is Required");
			err = true;
		}
		if (err == false){
			return true;
		}else{
			return false;
		} 	
  	});
	
});
