window.onload = function(){
	var width = document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
	var topBg = document.getElementById('topBg');


	showCounter();
	$('.imgZoom').fancybox();

	if(width < 1300 || width > 1000){
		topBg.style.margin = '20px 20px 0 20px';
	}
};



function showCounter(){
	document.getElementById('footerCounter').innerHTML = '<a href="http://www.liveinternet.ru/click" '+'target=_blank><img src="http://counter.yadro.ru/hit?t18.10;r'+escape(document.referrer)+((typeof(screen)=='undefined')?'':';s'+screen.width+'*'+screen.height+'*'+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+';'+Math.random()+'" alt="liveinternet.ru: iieacaii ?enei oeoia ca 24 ?ana, iinaoeoaeae ca 24 ?ana e ca naaiai\y" '+'border=0 width=88 height=31></a>';
}



function toggleParagraph(obj_id){
	var header = document.getElementById('h'+obj_id);
	if(header.className == 'minH'){
		document.getElementById('p'+obj_id).style.display = 'block';
		header.className = 'minHCur';
	}
	else{
		document.getElementById('p'+obj_id).style.display = 'none';
		header.className = 'minH';
	}
}


