initialize = function(){
	/*filter(Array('vezerlo'), 95);
	var h1 = document.getElementsByTagName('h1');
	if(h1.length > 1){
		var secundH1 = h1[1];
		var add = document.createElement('span');
		add.innerHTML = '<a href="http://www.startlap.hu/" onclick="window.open(\'http://www.startlap.hu/sajat_linkek/addlink.php?url=\'+encodeURIComponent(location.href)+\'&title=\'+encodeURIComponent(document.title));return false;" title="Add a Startlaphoz"><img alt="Add a Startlaphoz" src="http://www.utazasdr.hu/embed/image/bookmark.png" border="0"/></a>';
		secundH1.appendChild(add);
	}*/
	
	/*
	

	*/
}

$ = function(element){
	return document.getElementById(element);
}

filter = function(arr,op){
	for(var i=0; i<arr.length; i++){
		$(arr[i]).style.filter = 'alpha(opacity='+op+')';
		$(arr[i]).style.opacity = op/100;
	}
}

function showTel(){
	var div = document.getElementById('telepulesek');
	if(div.style.display == 'none'){
		div.style.display = 'block';
	}
	else{
		div.style.display = 'none';
	}
}