<!--
	function show(nr) {
	var SubNavID = 'SubNav' + nr;
	var ArrowID = 'Arrow' + nr;
	document.getElementById(SubNavID).style.visibility='visible';
	document.getElementById(ArrowID).style.visibility='visible';
	}
	function hide(nr) {
	var SubNavID = 'SubNav' + nr;
	var ArrowID = 'Arrow' + nr;
	document.getElementById(SubNavID).style.visibility='hidden';
	document.getElementById(ArrowID).style.visibility='hidden';
	}
		function NoBubble() { /*  this function prevents the <a> elements from the div with the sub-nav to execute onmouseover and onmouseout the functions from the parent elements - only for IE */
			//var SubNavID = 'SubNav' + nr; //get ID for the div with sub-nav
			//var SubStyle = document.getElementById(SubNavID).style.visibility; //get the visibility property for the div with sub-nav
			if (document.all) // && SubStyle=="visible" && window.event.srcElement.tagName == "A"  /* check for IE, check for visibility of the div with sub-nav, check for the element that triggers the event*/
				window.event.cancelBubble = true; //cancel bubbling - prevent propagation of event upwards the DOM tree 
		}
	function BlurLink(nr) {
	var NavLinkID = 'NavLink' + nr;
	document.getElementById(NavLinkID).blur();
	}
	
	//scriptul pt bannerul random // 
var img_rnd = new Array ("images/top_bg.jpg", "images/top_bg2.jpg", "images/top_bg3.jpg", "images/top_bg4.jpg", "images/top_bg5.jpg", "images/top_bg6.jpg", "images/top_bg7.jpg", "images/top_bg8.jpg");
var i = Math.round(7*Math.random());
