function init()
{
	$( '#logotipo' ).click( function()
	{
		window.location.href = "/";
	});
	
	$( '#thumbs' ).find( 'a' ).click( function()
	{
		var arquivo_alvo = $( this ).attr( 'arquivo_alvo' );
		var legenda_alvo = $( this ).attr( 'legenda_alvo' );
		$( '#imagem_aberta' ).attr( 'src', '/_images/site/' + arquivo_alvo );
		$( '#home_fotos_legenda' ).html( legenda_alvo );
	});
}

function galeria_init()
{
	$( 'a.link_galeria' ).click( function()
	{
		load_foto( $( this ).attr( 'foto_id' ) );
	});
}

function load_foto( id )
{
	$.getJSON( '/_ajax/load_foto.php', { 'id': id }, function( data )
	{
		$( '#foto' ).attr( 'src', '/_uploads/files/' + data.filename );
		$( '#foto_id' ).val( data.id );
		$( '#legenda' ).html( data.description );
		$( 'img.anterior' ).fadeIn();
		$( 'img.proxima' ).fadeIn();
	});
}

function foto_anterior()
{
	var id = $( '#foto_id' ).val();
	
	$.getJSON( '/_ajax/load_foto.php', { 'id': id, 'acao': 'anterior' }, function( data )
	{
		$( '#foto' ).attr( 'src', '/_uploads/files/' + data.filename );
		$( '#foto_id' ).val( data.id );
		$( '#legenda' ).html( data.description );
	});
}

function foto_proxima()
{
	var id = $( '#foto_id' ).val();
	
	$.getJSON( '/_ajax/load_foto.php', { 'id': id, 'acao': 'proxima' }, function( data )
	{
		$( '#foto' ).attr( 'src', '/_uploads/files/' + data.filename );
		$( '#foto_id' ).val( data.id );
		$( '#legenda' ).html( data.description );
	});
}