function changeTabs(id){
	
	var thedivinit1 = document.getElementById("clipuri");
	thedivinit1.setAttribute("class","inactive");
	thedivinit1.setAttribute("className","inactive");
	
	var thedivinit1 = document.getElementById("afise");
	thedivinit1.setAttribute("class","inactive");
	thedivinit1.setAttribute("className","inactive");
	
	document.getElementById("articol_clipuri").style.display="none";
	document.getElementById("articol_afise").style.display="none";
	
	document.getElementById("articol_"+id).style.display="";
	
	var thediv = document.getElementById(id);
	thediv.setAttribute("class","active");
	thediv.setAttribute("className","active");
	
}