// JavaScript Document
<!--
//vectorul cu inaltimile imaginilor pt marginea de sus care tb lasata
	var heights_big = new Array("89","59","78","48","100","100","75","117","100","70","70","70","70","69");
	var height_drept = 170
	function align_vertical(){
		document.images.slide_ald.style.marginTop = (height_drept - heights_big[0]) / 2 + 'px';
		document.images.slide_leaseplan.style.marginTop = (height_drept - heights_big[1]) / 2 + 'px';
		document.images.slide_savoye.style.marginTop = (height_drept - heights_big[2]) / 2 + 'px';
		document.images.slide_hertz.style.marginTop = (height_drept - heights_big[3]) / 2 + 'px';
		document.images.slide_ma.style.marginTop = (height_drept - heights_big[4]) / 2 + 'px';
		document.images.slide_coris.style.marginTop = (height_drept - heights_big[5]) / 2 + 'px';
		document.images.slide_nissan.style.marginTop = (height_drept - heights_big[6]) / 2 + 'px';
		document.images.slide_generali.style.marginTop = (height_drept - heights_big[7]) / 2 + 'px';
		document.images.slide_ea.style.marginTop = (height_drept - heights_big[8]) / 2 + 'px';
		document.images.slide_pbn.style.marginTop = (height_drept - heights_big[9]) / 2 + 'px';
		document.images.slide_pba.style.marginTop = (height_drept - heights_big[10]) / 2 + 'px';
		document.images.slide_pbv1.style.marginTop = (height_drept - heights_big[11]) / 2 + 'px';
		document.images.slide_pbv2.style.marginTop = (height_drept - heights_big[12]) / 2 + 'px';
		document.images.slide_pt.style.marginTop = (height_drept - heights_big[13]) / 2 + 'px';        		
	}
	//window.onload = align_vertical;

//function pt submeniu ca sa apara sau dispara
  //window.onload = showElement;
  function showElement(id1,id2,n) {
    var d = document.getElementById(id1);
    var dd = document.getElementById(id2);

//doar dc am trimis 1 din apel, at sa afiseze submeniul, altfel nu va face over-ul pe meniul principal servicii(doar pt FF)
    if (n == 1){
    	for (var i = 1; i<=10; i++) {
    		if (document.getElementById('smenu'+i)) {
          document.getElementById('smenu'+i).style.display = 'none';
          document.getElementById('serv'+i).style.color = '#E67817';
        }
    	}
      if (d) {
        d.style.display = 'block';
        dd.style.color = '#004B84';
      }
    }
  }
-->
