theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}


function zaznaczMenu ( stronka ) {

	box = document.getElementById('linki');
	if( box == null ) { 
		return false;
	}
	rows = box.childNodes; //SPAN objs
	
	for(i=0; i < rows.length; i++ ) {
		row = rows[i];
		if( typeof row.tagName == 'undefined' ) {
			continue;
		}
		oLink 		= row.lastChild;
		sLink 		= oLink.href;
		sBaseFile 	= sLink.split( '/')[3];
		if ( sBaseFile == stronka ) {			
			oLink.className = 'clicked';
		}
			
	}
}