$(document).ready(function () {
	$.ansForms();

  //land of opportunity
  //carente de calquera tipo de optimización, irei ao inferno por isto

  $('#langland .spanish').click(function(){
    sw_es();
  });

  $('#langland .galician').click(function(){
    sw_gl();
  });



	$('#mensaxe').css('top', '-50px').animate({'top': '0'}, 600).click(function () {
		$(this).fadeOut('slow');
	});

  $('#f-youtube').keyup(function(){
    if($(this).val()!=""){
      $('.engadir-foto').fadeOut();
    } else {
      $('.engadir-foto').fadeIn();
    }
  });

  $('#f-foto').change(function(){
    if($(this).val()!=""){
      $('.engadir-youtube').fadeOut();
    } else {
      $('.engadir-youtube').fadeIn();
    }
  });
  
  $('#menu-videos a').click(function(){
    $('#lista-videos-ajax').load($(this).attr('href'));
    $(this).parents('ul').find('li').removeClass('select');
    $(this).parents('li').addClass('select');
    return false;
  });
  
  $('#mostracontra a').click(function(){
    $('#textocontra').slideToggle();
    $(this).fadeOut();
    return false;
  });
  
  $('.muro-control a,.paxinacion-muro a').live('click', function(){
	var links = $(this).parents('.muro-control').find('li');
	var link = $(this).parent();
	
    $('ul.muro-control').nextAll('div,span').remove();
    $.get($(this).attr('href') + '?phpcan_exit_mode=ajax', function(data){
      $('.muro-control').after(data);
		$(links).removeClass('select');
		$(link).addClass('select');
    });
    return false;
  });
});

function facebook_post_authorize (url) {
	location.href = '/?return=' + url + '&phpcan_action[login-facebook]=1';
}

function sw_es(){
    $('.menuland .gl').hide();
    $('.menuland .es').show();
    $('#langland .spanish').addClass('select');
    $('#langland .galician').removeClass('select');
}

function sw_gl(){
    $('.menuland .gl').show();
    $('.menuland .es').hide();
    $('#langland .galician').addClass('select');
    $('#langland .spanish').removeClass('select');

}

