	function rep_bg(){
		var sPath = window.location.pathname;
		var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
		
		if(sPage == 'history.html'){
			var elmnt = document.getElementById('p1');
			elmnt.style.backgroundImage = 'url(images/history_hoober.jpg)';			
			elmnt.innerHTML = '<a style="color:#294294" href="history.html">História a súcastnost</a>';
		}
		else if(sPage == 'skolenia.html'){
			var elmnt = document.getElementById('p2');
			elmnt.style.backgroundImage = 'url(images/skolenia_hoober.jpg)';			
			elmnt.innerHTML = '<a style="color:#294294" href="skolenia.html">Akcie a kolenia</a>';
		}
		else if(sPage == 'dialog.html'){			
			var elmnt = document.getElementById('p3');
			elmnt.style.backgroundImage = 'url(images/dialog_hoober.jpg)';			
			elmnt.innerHTML = '<a style="color:#294294" href="dialog.html">Dialog</a>';
		}
		else if(sPage == 'forum.html'){
			var elmnt = document.getElementById('p4');
			elmnt.style.backgroundImage = 'url(images/forum_hoober.jpg)';			
			elmnt.innerHTML = '<a style="color:#294294" href="forum.html">Fórum otázok</a>';
		}
		else if(sPage == 'contact.html'){
			var elmnt = document.getElementById('p5');
			elmnt.style.backgroundImage = 'url(images/contact_hoober.jpg)';			
			elmnt.innerHTML = '<a style="color:#294294" href="forum.html">Kontakty</a>';
		}
		else if(sPage == 'download.html'){
			var elmnt = document.getElementById('p6');
			elmnt.style.backgroundImage = 'url(images/download_hoober.jpg)';			
			elmnt.innerHTML = '<a style="color:#294294" href="download.html">Na stiahnutie</a>';
		}
	}
