/***
	**			(c) 2011 bogdan@cyecorp.ro
	**
*/
	
	
	
	function expandDiv(div){ 
		if (document.getElementById(div).style.display == 'none') { 
			document.getElementById(div).style.display = ''; 
		} else {
			document.getElementById(div).style.display = 'none'; 
		} 
	}

	function changeColor(id, aid, color) {
        document.getElementById(aid).style.color = color;
	}

    function changeImage(id, img) {
		newImage = "url(img/header/<?php print $lang."/"; ?>" + img + "_colored.jpg)";
		/*alert(newImage);*/
        document.getElementById(id).style.backgroundImage = newImage;
        document.getElementById(id).style.cursor = "hand";
    }

    function changeBack(id, img) {
		newImage = "url(img/header/<?php print $lang."/"; ?>" + img + ".jpg)";
        document.getElementById(id).style.backgroundImage = newImage;
        document.getElementById(id).style.cursor = 'default';
    }

	function hideDiv() {
		document.getElementById('shortcuts').style.top='-22px';
		document.getElementById('close').innerHTML='<a id="img_a" onclick="showDiv()" style="cursor:pointer; cursor: hand;" title="Show"><img src="http://ctconstructii.ro/site/img/arrow_down.png" width="10" height="10" border="0" alt="" id="img_showhide"> show</a>';
	}

	function showDiv() {
		document.getElementById('shortcuts').style.top='0px';
		document.getElementById('close').innerHTML='<a id="img_a" onclick="hideDiv()" style="cursor:pointer; cursor: hand;" title="Hide"><img src="http://ctconstructii.ro/site/img/arrow_up.png" width="10" height="10" border="0" alt="" id="img_showhide"> hide</a>';
	}

	function loadDivWithNewsFrom(div_id) {
		if (document.getElementById(div_id) != null) {
			if (document.getElementById('div_news') != null) {
				document.getElementById('div_news').innerHTML = document.getElementById(div_id).innerHTML;
			}
		}
	}//loadDivWithNewsFrom

	function disableDIVs(){
		if (document.getElementById('calendar') != null) {
				document.getElementById('calendar').style.display = 'none';	
		}

		if (document.getElementById('rezultate') != null) {
				document.getElementById('rezultate').style.display = 'none';	
		}

		if (document.getElementById('anunturi') != null) {
				document.getElementById('anunturi').style.display = 'none';	
		}

	}//disableDIVs

	function enableDIV(div_id){
		disableDIVs();

		if (document.getElementById(div_id) != null) {
				document.getElementById(div_id).style.display = '';
		}	
	}//enableDIV

	

/*		(c) 2011 bogdan@cyecorp.ro		*/
