function menu_on(i){
	// if(typeof mto != 'undefined' ) clearTimeout(mto);
	 switch_menu(i,2);
}

function menu_out(i){
	// mto = setTimeout('switch_menu('+i+','+b+')',100);
	// alert("si "+i);
	 switch_menu(i,1);
}

function switch_menu(i,m){
	document.getElementById('ul'+i).style.display =  ( m==2 ? 'block' : 'none' );
	document.getElementById('li'+i).style.borderColor =  ( m==2 ? 'red' : 'blue' );
}

function playAudio(a,b,c,d){
	document.getElementById("player").load(a,b,c,d);
}

function playVideo(a){
	var so = new SWFObject("swf/videoPlayer.swf?vid="+a, "main", "352", "300", "8", "");
	so.write("divVideoPlayer");
}

function veureDiv(identi) {

  if (document.getElementById('div'+identi+'Tot').style.display=="none") {
   document.getElementById('div'+identi+'Tot').style.display="block";
   document.getElementById('div'+identi+'Parcial').style.display="none";
  } else {
   document.getElementById('div'+identi+'Tot').style.display="none";
   document.getElementById('div'+identi+'Parcial').style.display="block";
  }

 }


function new_post(){
	//document.getElementById('add_com_form').style.display = 'none';
	$("#add_com_form").slideUp();
	$("#com_form").slideDown();
}

function clear_form_nom(){
	document.getElementById('form_nom').value="";
}

function clear_form_email(){
	document.getElementById('form_email').value="";
}