function fncBlurLinks() {
	// No onclick events on a-elements should be defined on this page!
	var links = document.getElementsByTagName("a");
	for(var i = 0; i < links.length; i++) {
		if(navigator.appName == "Microsoft Internet Explorer") {
			eval("links[i].onclick = function() { document.focus(); }");
		} else {
			links[i].setAttribute("onclick", "this.blur();");
		}
	}
}

function fncShowHideTitle(status) {
	var title = document.getElementById('title'),
		selector = document.getElementById('selector');
	if(status == 'over') {
		title.style.display = 'none';
		selector.style.paddingTop = '71px';
	} else if(status == 'out') {
		title.style.display = '';
		selector.style.paddingTop = '0';
	}
}
