var seccion=0;

function is_int(s)
{
	return (s.search(/^[0-9]+$/) == 0);
}
var imagenes = new Array();
function preload() 
{
	a=preload.arguments;
	for(i=0; i<a.length; i++)
	{
    	if (a[i].indexOf("#")!=0)
    	{
    		imagenes[i]=new Image;
    		imagenes[i].src=a[i];
    	}
    }
}

preload('http://danielamoroso.com.ar/quierohaceralgo/img/botones/da_hov.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/flickr_hov.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/youtube_hov.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/twitter_hov.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/facebook_hov.png',
'http://danielamoroso.com.ar/quierohaceralgo/img/botones/estoy_haciendo.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/estoy_haciendo_hov.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/estoy_haciendo_sel.png','http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/estoy_haciendo_desc.png',
'http://danielamoroso.com.ar/quierohaceralgo/img/botones/hice_algo.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/hice_algo_hov.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/hice_algo_sel.png','http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/hice_algo_desc.png',
'http://danielamoroso.com.ar/quierohaceralgo/img/botones/quiero_hacer_algo.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/quiero_hacer_algo_hov.png','http://danielamoroso.com.ar/quierohaceralgo/img/botones/quiero_hacer_algo_sel.png','http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/quiero_hacer_algo_desc.png',
'http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/facebook_desc.png','http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/da_desc.png','http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/flickr_desc.png','http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/youtube_desc.png',
'http://danielamoroso.com.ar/quierohaceralgo/img/descripciones/twitter_desc.png', 'http://danielamoroso.com.ar/quierohaceralgo/img/botones/enviar_hov.png', 'http://danielamoroso.com.ar/quierohaceralgo/img/botones/enviar_hov.jpg');

function menu(inicio)
{
	$('.boton').each(function()
	{
		$(this).css('background-image','url(img/botones/'+$(this).attr('alt')+'.png)');
		if(inicio)
			$(this).parent().children('.descripcion').css('background-image','url(img/descripciones/'+$(this).attr('alt')+'_desc.png)').hide();
		else
			$(this).parent().children('.descripcion').hide();
	});
}

function cargar_pagina(url)
{
	if(seccion==2)
		div="#estoy_haciendo";
	else
		div="#hice_algo";
	$(div).load('proyectos.php'+url);
}

function f_seccion(id)
{
	if(seccion==$(id).attr('seccion'))
		return;
	vieja_seccion=seccion;
	seccion=parseInt($(id).attr('seccion'));
	menu(false);
	if($(id).hasClass('boton'))
	{
		$(id).css('background-image','url(img/botones/'+$(id).attr('alt')+'_sel.png)');
		$(id).parent().children('.descripcion').show();
	}
	switch(vieja_seccion)
	{
		case 0: { ocultar='#home'; break; }
		case 1: { ocultar='#quiero_hacer_algo'; break; }
		case 2: { ocultar='#estoy_haciendo'; break; }
		case 3: { ocultar='#hice_algo'; break; }	
	}
	switch(seccion)
	{
		case 0: { mostrar='#home'; break; }
		case 1: { mostrar='#quiero_hacer_algo'; break; }
		case 2: { mostrar='#estoy_haciendo'; break; }
		case 3: { mostrar='#hice_algo'; break; }	
	}
	$(ocultar).fadeOut(function()
	{
		$(mostrar).fadeIn();
	});
}

function urlEncode(s)
{
	return encodeURIComponent( s ).replace( /\%20/g, '+' ).replace( /!/g, '%21' ).replace( /'/g, '%27' ).replace( /\(/g, '%28' ).replace( /\)/g, '%29' ).replace( /\*/g, '%2A' ).replace( /\~/g, '%7E' );
}

function activar_fbox()
{
	$(".fbox").fancybox(
	{
		'frameWidth': 600,
		'frameHeight': 410,
		'padding': 0
	});
}

$(document).ready(function()
{
	menu(true);
	
	activar_fbox();
	
	$('.boton').hover(function()
	{
		if($(this).attr('seccion')!=seccion)
		{
			$(this).css('background-image','url(img/botones/'+$(this).attr('alt')+'_hov.png)');
			if($(this).attr('seccion')!=undefined || seccion==0)
				$(this).parent().children('.descripcion').show();
		}
	},
	function()
	{
		if($(this).attr('seccion')!=seccion)
		{
			$(this).css('background-image','url(img/botones/'+$(this).attr('alt')+'.png)');
			if($(this).attr('seccion')!=undefined || seccion==0)
				$(this).parent().children('.descripcion').hide();
		}
	});
	$('.boton').click(function()
	{
		
		if($(this).attr('seccion')==undefined)
			window.open($(this).attr('href'),'_blank');
		else
			f_seccion(this);
	});
	$('.enviar').hover(function()
	{
		$(this).css('background-image','url(img/botones/enviar_hov.jpg)');
	},
	function()
	{
		$(this).css('background-image','url(img/botones/enviar.jpg)');
	});
	$('.enviar').click(function()
	{
		$('#respuesta').load('proponer.php',
		{
			'nombre' : $('#quiero_hacer_algo input[name=nombre]').val(),
			'barrio' : $('#quiero_hacer_algo input[name=barrio]').val(),
			'mail' : $('#quiero_hacer_algo input[name=mail]').val(),
			'propuesta' : $('#quiero_hacer_algo textarea').val()
		},function()
		{
			$('#respuesta').show();
			if($('#respuesta .ok').size()>0)
			{
				$('#quiero_hacer_algo input[name=nombre]').val('');
				$('#quiero_hacer_algo input[name=barrio]').val('');
				$('#quiero_hacer_algo input[name=mail]').val('');
				$('#quiero_hacer_algo textarea').val('');
			}
			$('#respuesta a').click(function()
			{
				$('#respuesta').hide();
			});
		});
	});
	$('#estoy_haciendo').load('proyectos.php');
	$('#hice_algo').load('proyectos.php?s=1');
});

