/* 
  jQuery pomocny skript vychazejici z puvodniho Webnode pro www.skolka-pelisek.cz
  Author: Martin Michalek, Studio Shortcat, michalek@shortcat.cz
*/


// ===== Helpery =====

// Detekce IE6 -- http://gregwolejko.com/ie-detection-in-javascript/
var isIE6 = false /*@cc_on || @_jscript_version < 5.7 @*/; 


// ===== Puvodni Webnode skript ponechame =====

function logoCentering()
{

	var rbcLogo = document.getElementById("rbcSystemIdentifierLogo");

	if ( rbcLogo.parentNode.className == "image" )
	{

		var elImg = rbcLogo.firstChild;

		if (elImg && elImg.offsetHeight == 0)
		{
			Event.observe(window, 'load', function (e)
				{
					setTimeout(logoCentering, 1000);
				}

			);
			return false;
		}

		offsetTop = parseInt(( 60 - elImg.offsetHeight ) / 2 );
		if ( offsetTop > 0 )
		{
			rbcLogo.parentNode.style.overflow = "visible";
			rbcLogo.firstChild.style.position = "relative";
			rbcLogo.firstChild.style.top = offsetTop + "px";
		}
	}
}

