/* Reklamlarý al */ 
var advertMainDiv = $('DIV_Adverts120x100');
var maxTop = getDocumentDimensions()[1];
var oldWindowOnload = window.onload;

window.onload = function()
{
	InitPage(); 	
	if (advertMainDiv) 
	{
		var coords = findPos(advertMainDiv);
		advertMainDiv.orgTop = coords[1];
		advertMainDiv.orgLeft = 20;
		
		LocateAdvertsDiv(0);
		maxTop = getDocumentDimensions()[1];
		window.onscroll = WindowScrolled;
	}
		
	if (typeof oldWindowOnload != "undefined" && oldWindowOnload != null)
		oldWindowOnload();
}

function WindowScrolled()
{
	var scrollTop = getScrollTop();	
	LocateAdvertsDiv(scrollTop);
}

function LocateAdvertsDiv(sctop)
{
	if (advertMainDiv.style.position != 'absolute')
		advertMainDiv.style.position = 'absolute';

	advertMainDiv.style.left = (advertMainDiv.orgLeft) + 'px';
	advertMainDiv.style.top  = (advertMainDiv.orgTop + sctop) + 'px';
	
	var top_scroll = 390;
	if (parseInt(advertMainDiv.style.top) > top_scroll && sctop < top_scroll)
		advertMainDiv.style.top = top_scroll + 'px';
	else if (parseInt(advertMainDiv.style.top) > top_scroll)
		advertMainDiv.style.top = (20 + sctop) + 'px';
	
	//if (parseInt(advertMainDiv.style.top) + advertMainDiv.offsetHeight > maxTop)
	//	advertMainDiv.style.top = (maxTop - advertMainDiv.offsetHeight - 10) + 'px';	
}
