// FUNCIONES ICAPTCHA
function again(){
	document.icaptcha.SetVariable("again","OK");
}
function checking(){
	document.icaptcha.SetVariable("code",document.validate.code.value);
}
function send(){
	document.validate.submit();
}

function Videos() {
	$.post("reproductor.inc.php",{contenido: cont, tipo: tip},function(data){
			$("#videos").html(data); //Inserta los datos en el div videos
	});
}

function Consultas() {
	$(".elemento").hide();

	//slides the element with class "elemento" when paragraph with class "asunto" is clicked
	$("#consultas p.asunto").click(function()
	{
		$(this).next(".elemento").slideToggle("normal");
		/*$(this).next(".elemento").slideDown(700).siblings(".elemento").slideUp("slow");*/
	});
}

function Menu() {
	$("ul.menu-secciones li ul.menu-secciones").hide();
	$("ul.menu-secciones li ul.menu-contenidos").hide();
	//slides the element with class "preguntas" when paragraph with class "asunto" is clicked
	$("#menu-secciones ul.menu-secciones li p").click(function() {
		$(this).next("li ul.menu-contenidos").slideToggle("normal").next("li ul.menu-secciones").slideToggle("normal");
		/*var checkElement = $(this).next();
		if((checkElement.is("ul.menu-secciones")) && (checkElement.is(":visible"))) {
			return false;
		}
		if((checkElement.is("ul.menu-secciones")) && (!checkElement.is(":visible"))) {
			$("#menu-secciones ul.menu-secciones li > ul:visible").slideUp("normal");
			checkElement.slideDown("normal");
			return false;
		}
		$(this).next(".menu-secciones").slideDown(700).siblings("#menu-secciones ul.menu-secciones > li  ul").slideUp("fast");*/
	});
}

function aleatorio(inferior,superior){
		
	numPosibilidades = superior - inferior;
	aleat = Math.random() * numPosibilidades;
	return Math.round(parseInt(inferior) + aleat);
}

function precarga_cabecera() {
	for(var i = 1; i <= 11; i++)
	{
		cur.css({
			'background-image':'url(imagenes/chacao/cabecera'+i+'.png)'
		});
	}
}


function cabecera() {
	precarga_cabecera();
	var m = aleatorio(1,11);
	var cur = $("#cabecera");
	/*cur.fadeOut("slow");*/
	cur.css({
		'background-image':'url(imagenes/chacao/cabecera'+m+'.png)'
	});
	/*cur.fadeIn("slow");*/
}

/*function videos() {
	var so = new SWFObject("http://chacao.iscrsystems.com/media/reproductor/player.swf","mpl","425","344","9");
	so.addParam("allowscriptaccess","always");
	so.addParam("allowfullscreen","true");
	so.addParam("flashvars","&config=http://chacao.iscrsystems.com/media/reproductor/config-reproductor.xml&file=http://www.youtube.com/watch?v=IBTE-RoMsvw");
	so.write("videos");
}*/
