function rollOver (image, type) {
	document[image].src="http://www.businesstime.ro/images/header/"+ image + 1 + "." + type;
}

function rollOut (image, type) {
	document[image].src="http://www.businesstime.ro/images/header/"+ image + 0 + "." + type;
}

function headerTabs (tab, stab, etab) {
	for (var i = 1; i <= 12; i++) {
		elementId = "headerTable" + i;
		tabId = "headerTab" + i;
		if (document.getElementById(elementId)) {
			if (i == parseInt(tab)) {
				document.getElementById(elementId).style.display = 'block';
				document.getElementById(tabId).innerHTML = '<img src="http://www.businesstime.ro/images/header/btnh' + parseInt(tab) + '1.gif" name="btnh' + parseInt(tab) + '1" alt="" title="" border="0">';
			} else {
				document.getElementById(elementId).style.display = 'none';
				document.getElementById(tabId).innerHTML = '<img style="cursor:pointer" onclick="headerTabs(\'' + parseInt(i) + '\',\'' + parseInt(stab) + '\',\'' + parseInt(etab) + '\')" src="http://www.businesstime.ro/images/header/btnh' + parseInt(i) + '0.gif" onmouseover="rollOver(\'btnh' + parseInt(i) + '\', \'gif\');" onmouseout="rollOut(\'btnh' + parseInt(i) + '\', \'gif\');" name="btnh' + parseInt(i) + '" alt="" title="" border="0">';
			}
		}
	}
	return tab;
}
