window.onload = function () {

	MM_preloadImages('/images/nav/home2.gif', '/images/nav/agenda2.gif', '/images/nav/info2.gif', '/images/nav/contact2.gif', '/images/nav/experts2.gif');
	
	document.getElementById('nav_home').onmouseout = MM_swapImgRestore;
	document.getElementById('nav_home').onmouseover = function () { MM_swapImage('nav_home','','/images/nav/home2.gif',1); };
	document.getElementById('nav_agenda').onmouseout = MM_swapImgRestore;
	document.getElementById('nav_agenda').onmouseover = function () { MM_swapImage('nav_agenda','','/images/nav/agenda2.gif',1); };
	document.getElementById('nav_info').onmouseout = MM_swapImgRestore;
	document.getElementById('nav_info').onmouseover = function () { MM_swapImage('nav_info','','/images/nav/info2.gif',1); };
	document.getElementById('nav_experts').onmouseout = MM_swapImgRestore;
	document.getElementById('nav_experts').onmouseover = function () { MM_swapImage('nav_experts','','/images/nav/experts2.gif',1); };
	document.getElementById('nav_contact').onmouseout = MM_swapImgRestore;
	document.getElementById('nav_contact').onmouseover = function () { MM_swapImage('nav_contact','','/images/nav/contact2.gif',1); };		
	
	var imgs = document.getElementsByTagName ('img');
	
	for (var t = 0; t < imgs.length; t++) {
		
		var img = imgs[t];
		
		if (img.getAttribute('align') == "left") {
			img.style.marginRight = "10px";
			img.style.marginBottom = "6px";
		}

		else if (img.getAttribute('align') == "right") {
			img.style.marginLeft = "10px";
			img.style.marginBottom = "6px";
		}
		
	}

}