var inc=0;
var prezent=0;
var def=14;
var hex1=85;
var hex2=85;

function mare(id)
{	
	inc+=1;

	prezent=def+inc;
	document.getElementById("articol").style.fontSize = prezent + "px";
	hex1+=1;
	hex2-=8;
	if (hex2>=0 || hex1<=255){
	document.getElementById(id).style.color="RGB("+hex1+","+hex1+","+hex1+")";
	document.getElementById("resizeSmall").style.color="RGB("+hex2+","+hex2+","+hex2+")";
	}
}

function mic(id)
{
	inc-=1;

	if(inc==-15)
	{
		inc=-14;
		return;
	}
	prezent=def+inc;
	document.getElementById("articol").style.fontSize = prezent + "px";
	hex1-=1;
	hex2+=8;
		if (hex1>=0 || hex2<=255){
	document.getElementById("resizeBig").style.color="RGB("+hex1+","+hex1+","+hex1+")";
	document.getElementById(id).style.color="RGB("+hex2+","+hex2+","+hex2+")";
	}

}


