// JavaScript Document


window.onload = function(){
	doColapse('block', 'get-down');
	doColapse('block', 'get-down-promotii');
	}	
	
	function doColapse(stare_initiala, obj){
		var stare_finala = 'block';
		//var clasa_finala = 'selectat';
		
		if (stare_initiala == 'block') {
			stare_finala = 'none';
			//clasa_finala = '';
			}
		
		document.getElementById(obj).style.display = stare_finala;
		//document.getElementById(obj).parentNode.className = clasa_finala;
		if (document.getElementById(obj).parentNode.className == 'selectat'){
			document.getElementById(obj).style.display = 'block';
			}
	}
	
	function doShow(ob){
		
		var stare_finala = 'block';
		var stare_initiala = document.getElementById(ob).style.display;
		///var test = this.firstChild.style.display;
		//alert(test);
		
		if (stare_initiala == 'block') {
			stare_finala = 'none';
			}
		document.getElementById(ob).style.display = stare_finala;	/**/	
	}