function laden(rub)	{
	$('#content').load('spip.php?rubrique' + rub + ' #content');
}

function menu_colorize()	{
	$(".rub0").css("background", "#ff9d00");
	$(".rub1").css("background", "#ffb640");
	$(".rub2").css("background", "#ffc870");
	$(".rub3").css("background", "#ffb640");
}

function post(name)	{
	parent.location='mailto:' + name + '@planet13.ch';
}

function post(name, domain, tld)	{
	parent.location='mailto:' + name + '@' + domain + '.' + tld;
}
var recipientIsOpen = 0;
function recipient()  {
  if(recipientIsOpen == 0)  {
    $(".recipient_list").css("display", "block"); 
    recipientIsOpen = 1;
  }
  else if(recipientIsOpen == 1) {
    $(".recipient_list").css("display", "none"); 
    recipientIsOpen = 0;
  }
}
function recipient_select(description, name, domain, tld)  {
  $(".recipient_list").css("display", "none");
  $(".input_dropdown").html(description);
  $('.recipient_address').attr('value', name + '@' + domain + '.' + tld);
  recipientIsOpen = 0;
}








