// bookmark
function bookmark(anchor)
{
   if(window.external)
   {
       window.external.AddFavorite(anchor.getAttribute('href'), anchor.getAttribute('title'));
       return false;
   }
   return true;
}

// datum
var dayName = new Array ("Duminica", "Luni", "Marti", "Miercuri", "Joi", "Vineri", "Sambata");
var monName = new Array ("Januarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie");
var now = new Date

// CSS change
var allPageTags = new Array(); 

/*function chgCl(box) {
//Populate the array with all the page tags
var allPageTags=document.getElementsByTagName("*");
//Cycle through the tags using a for loop
for (i=0; i<allPageTags.length; i++) {
//Pick out the tags with our class name
if (allPageTags[i].className==box) {
//Manipulate this in whatever way you want
allPageTags[i].style.width='15%';
allPageTags[i].style.background='#000000';
}
}
}*/ 

function restoreBox()
{
	for (i=1; i<=5; i++)
	{
		document.getElementById("box"+i).style.width = "133px";
	}
}

function chgCl(id) {
	for (i=1; i<=5; i++)
	{
		if (i==id)
		{
			document.getElementById("box"+i).style.width = "251px";
		}
		else
		{
			document.getElementById("box"+i).style.width = "104px";
		}
	}
} 
