// JavaScript Document
function $(obj)
{
	return document.getElementById(obj);
}

function randNumbers()
{
	var i=0
	while (i>4 || i<=0)
	{
		var i = Math.ceil(Math.random()*10);
	}
	return i;
}
function changeStyle(obj)
{
	if (obj=='')
	{
		return false;
	}
	num = randNumbers();
	$(obj).href='css/css'+num+'.css';
}
