function init2()
{
	var links = document.getElementsByTagName( 'a' );

	for( i=0; i < links.length; i++ )
	{	
		if (links[i].className=='zoom')
		{
			links[i].onclick = showZoom;		
		}
	}
}

function swieta()
{
    win = document.getElementById( 'zoomwin' );
    win.style.display = 'block';
    
    var y = '0px';
    if(window.pageYOffset) y = window.pageYOffset; else y = truebody().scrollTop; 
    win.style.top = ( y + 40 ) + 'px';
    var img = document.createElement( 'img' );
    img.setAttribute( 'id', 'zommedimg' );
    img.setAttribute( 'src', '/img/kartka_sw.jpg' );
    win.insertBefore( img, document.getElementById( 'wozkibottom2' ) );
    document.getElementById( 'leftbaner' ).style.display = 'none';
    document.getElementById( 'flashcontent' ).style.display = 'none';
}

function ballerina(lang)
{
    win = document.getElementById( 'zoomwin' );
    win.style.display = 'block';
    
    var y = '0px';
    if(window.pageYOffset) y = window.pageYOffset; else y = truebody().scrollTop; 
    win.style.top = ( y + 40 ) + 'px';
    var img = document.createElement( 'img' );
    img.setAttribute( 'id', 'zommedimg' );
    img.setAttribute( 'src', '/img/balerina_nosidlo_'+lang+'.jpg' );
    win.insertBefore( img, document.getElementById( 'wozkibottom2' ) );
    document.getElementById( 'leftbaner' ).style.display = 'none';
    document.getElementById( 'flashcontent' ).style.display = 'none';
}

function showZoom()
{
	win = document.getElementById( 'zoomwin' );
	win.style.display = 'block';

	var y = '0px';
	if(window.pageYOffset) y = window.pageYOffset; else y = truebody().scrollTop; 
	win.style.top = ( y + 5 ) + 'px';
	var img = document.createElement( 'img' );
	img.setAttribute( 'id', 'zommedimg' );
	img.setAttribute( 'src', this.href );
	win.insertBefore( img, document.getElementById( 'wozkibottom2' ) );
	document.getElementById( 'leftbaner' ).style.display = 'none';
	document.getElementById( 'flashcontent' ).style.display = 'none';
	return false;
}

function closeZoom()
{
	win = document.getElementById( 'zoomwin' );
	win.removeChild( document.getElementById( 'zommedimg' ) );
	win.style.display = 'none';	
	document.getElementById( 'leftbaner' ).style.display = 'block';
	document.getElementById( 'flashcontent' ).style.display = 'block';
}

function truebody()
{
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;
}

function showName( nr )
{
	win = document.getElementById( 'wozeklabel' );
	var img = document.createElement( 'img' );
	img.setAttribute( 'id', 'labelimg' );
	img.setAttribute( 'src', 'img/wozki/nazwy/'+nr+'.jpg' );
	win.appendChild( img );
}

function hideName()
{
	win = document.getElementById( 'wozeklabel' );
	win.removeChild( document.getElementById( 'labelimg' ) );
}

function showZoom2()
{
	win = document.getElementById( 'zoomwin2' );
	win.style.display = 'block';
	var y = '0px';
	if(window.pageYOffset) y = window.pageYOffset; else y = truebody().scrollTop; 
	win.style.top = ( y + 5 ) + 'px';
	document.getElementById( 'leftbaner' ).style.display = 'none';
	document.getElementById( 'flashcontent' ).style.display = 'none';
    
	return false;
}

function closeZoom2()
{
	win = document.getElementById( 'zoomwin2' );
	win.style.display = 'none';	
	document.getElementById( 'leftbaner' ).style.display = 'block';
	document.getElementById( 'flashcontent' ).style.display = 'block';
}

