// FUNCION PARA INICIALIZAR ELEMENTO SCROLL
$(document).ready(function() { 
	tabActual=1;
	//FUNCION PARA DROPDOWN MENU
		$('#menu li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });

	//FUNCION ACORDION
	  		var x;

	$("#iniciar").click(function () {
		//alert(x);
		if(x==0){ $("#login_info").hide("slide", { direction: "up" }, 1000);  x=1;}
		else{ $("#login_info").show("slide", { direction: "up" }, 1000); x=0;}
		});
	
	
		$("a[rel]").overlay({
 
		expose: '#000000',
		effect: 'apple',
 
		onBeforeLoad: function() {
 
			// grab wrapper element inside content
			var wrap = this.getContent().find(".contentWrap");
 
			// load the page specified in the trigger
			wrap.load(this.getTrigger().attr("href"));
		}
 
	});
	
	//FUNCION PARA SCROLL
	var all = $(".scroll").scrollable({size: 1,clickable:false}).circular().navigator().autoscroll({steps: 1, interval: 5500});
	
	
	//TABS
	$("ul.tabs").tabs("div.panes > div",{effect: 'fade'});
	
	//SUBMIT FORMULARIO
	
	/*
	
    $("#forma").submit(function() {
			if(checarForma()){
				suscrito = 1;
				 new $.ajax({
					url: "index.php",
					global: true,
					type: "post",
					data: ($('#forma').serialize()),
					dataType: "html",
					success: function(msg){
						  window.location = 'registrar/gracias.php';
					}
				 });
					}else{
				return false;
			}
	});
	*/

});

