// JavaScript Document

var cargando=0;


function preCarga() {
if (!document.images) return;
var ar = new Array();
var arguments = preload.arguments;
for (var i = 0; i < arguments.length; i++) {
ar[i] = new Image();
ar[i].src = arguments[i];
}
}



function roll_image(id, src) {
	$(id).attr('src', src);
}
	

function isValidEmail(strEmail){
  validRegExp = /^[^@]+@[^@]+.[a-z]{2,}$/i;
 

   // search email text for regular exp matches
    if (strEmail.search(validRegExp) == -1) 
   {
      return false;
    } 
    return true; 
}



function inicializar_comun() {
	
	var color_enlaces;
	$('#textos_menu a').mouseover(function() {
										   color_enlaces=$(this).css('color');
										   $(this).css('color', '#99F');
										   });
	$('#textos_menu a').mouseout(function() {
										  
										   $(this).css('color', color_enlaces);
										   });
	
	$('.clickable').mouseover(function() {
									  
									   cargando=1;
									   });
	$('.clickable').mouseout(function() {
									  
									   cargando=0;
									   });
	
	$('.contenedor').click(function() {
		if(!cargando) {
		if($('#desplegable').html()!=null && $('#desplegable').html()!='') {
			if(typeof api_jsp !== "undefined") {
				api_jsp.destroy();
			}
		$('#desplegable').html('');
		$('#desplegable').hide();
		}
		}
		
	});
}

function cmpFecha(a,b){
	mayor= a.getTime();
	menor= b.getTime();
	return (mayor>menor);
}

function cerrar_caja(id, funcion) {

	if(funcion)
		funcion();
	$('#'+id).html('');
	$('#'+id).hide();
	
}

function registrar_raton(event) {
	x=event.pageX;
 	y=event.pageY;
}

function crear_desplegable(event, text_html, width, height, desp_x, desp_y, vel_show, funcion_show) {
	
	registrar_raton(event);
	$('#desplegable').html(text_html);
	$('#desplegable').css('width', width);
	$('#desplegable').css('height', height);
	$('#desplegable').css("left", x + desp_x);
	$('#desplegable').css("top", y + desp_y);
	$('#desplegable').show(vel_show, funcion_show);
	
	
	
	
	
}

function arrancar_imagenes(pag) {
	$('#imagenes_cabecera').html('<img align="center" src="iconos/progress.gif">');
	if(pag=='home') {
		$('#imagenes_cabecera').html('<img src="/img_web/Index_1.png"/><img src="/img_web/Index_2.png"/><img src="/img_web/Index_3.png"/><img src="/img_web/Index_4.png"/><img src="/img_web/Index_5.png"/><img src="/img_web/Index_6.png"/><img src="/img_web/Index_7.png"/><img src="/img_web/Index_8.png"/><img src="/img_web/Index_9.png"/>');
	}
	
	else if(pag=='rest') {
		$('#imagenes_cabecera').html('<img src="/img_web/Restaurante-1.png" /><img src="/img_web/Restaurante-2.png" /><img src="/img_web/Restaurante-3.png" /><img src="/img_web/Restaurante-4.png" /><img src="/img_web/Restaurante-5.png" /><img src="/img_web/Restaurante-6.png" />');
	}
	
	else if(pag=='event') {
		$('#imagenes_cabecera').html('<img src="/img_web/evento-1.png" /><img src="/img_web/evento-2.png" />');
	}
	else if(pag=='empresa') {
		$('#imagenes_cabecera').html('<img src="/img_web/empresas-1.jpg" />');
	}
	else if(pag=='golf') {
		$('#imagenes_cabecera').html('<img src="/img_web/golf-1.png" /><img src="/img_web/golf-2.png" />');
	}
	else if(pag=='futbol') {
		$('#imagenes_cabecera').html('<img src="/img_web/futbol_1.png" /><img src="/img_web/futbol_2.png" /><img src="/img_web/futbol_3.png" /><img src="/img_web/futbol_4.png" /><img src="/img_web/futbol_5.png" /><img src="/img_web/futbol_6.png" /><img src="/img_web/futbol_7.png" /><img src="/img_web/futbol_8.png" /><img src="/img_web/futbol_9.png" />');
	}
	
	
	
    $('#imagenes_cabecera').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 2000,
		next: '#logo'
	});
	
	
	

}

function cargar_pagina(pag) {
	
	arrancar_imagenes(pag);
	var color;
	
	if(pag=='golf' || pag=='futbol' || pag=='home') {
		$('body').css('background-image', 'url(/img_web/fondo_home.jpg)');
		$('#menu_con_logo').css('background-image', 'url(/img_web/fondo_home_contenido.jpg)');
		color='#99CC33';
		
	}
	else {
		$('body').css('background-image', 'url(/img_web/fondo_'+pag+'.jpg)');
		$('#menu_con_logo').css('background-image', 'url(/img_web/fondo_'+pag+'_contenido.jpg)');
	}
	
	if(pag=='rest')
		color='#FFCC33';
	if(pag=='event') 
		color='#333333';
	if(pag=='empresa')
		color='#0066FF';
	$('#menu_con_logo a').css('color', color);
	$('#menu_'+pag).css('color', '#9999FF');
	
	
	
	
		
	
}

function poner_fecha(id, dia, mes, anyo, id_ocultar) {
	
	$('#'+id).val(dia+'/'+mes+'/'+anyo);
	$('#'+id_ocultar).html('');
	
	
}

function otro_mes(id, dia, mes, anyo, control_calendario, destino, funciones_extra) {
	
			$('#'+destino).val('Cargando...');
			var fecha=new Date();
			if(dia==0) 
				dia=fecha.getDate();
			if(mes==0)
				mes=fecha.getMonth()+1
			if(anyo==0)
				anyo=fecha.getFullYear();
			
			
			  
			$.get("/sql.php", {control: 'mostrar_calendario', dia:dia, mes:mes, anyo:anyo, destino:destino, capa_calendario:id, funciones_extra:funciones_extra}, 
				  function(data) {
					
					  $('#desplegable').html(data);
					  $('#desplegable').show();
					  $('#'+destino).val('');
				  });
}

function mostrar_calendario(event, id, dia, mes, anyo, control_calendario, destino, funciones_extra) {
	
    if($('#desplegable').html()!='') {
		$('#desplegable').html('');
		$('#desplegable').hide();
	}
	else {
		
		if($('#'+id).html()!='' & control_calendario==1) {
			$('#'+id).html('');
		} else {
		
			$('#'+destino).val('Cargando...');
			var fecha=new Date();
			if(dia==0) 
				dia=fecha.getDate();
			if(mes==0)
				mes=fecha.getMonth()+1
			if(anyo==0)
				anyo=fecha.getFullYear();
			
			
			  
			$.get("/sql.php", {control: 'mostrar_calendario', dia:dia, mes:mes, anyo:anyo, destino:destino, capa_calendario:id, funciones_extra:funciones_extra}, 
				  function(data) {
					
						crear_desplegable(event, data, '', '', 5, 10, 500);
					  $('#'+destino).val('');
				  });
		}
	}
}



function poner_valor_en_input(id_input, valor) {
	
	$('#'+id_input).val(valor);
}


	
