// JavaScript Document
window.addEvent('domready', function()
{
	$('mainHead').destroy();
	var crystal = new Image();
	window['crystalImg'] = undefined;
	
	crystal.onload = function()
	{
		var styleLeft = Math.round((((window.getWidth() - 200) / 2) / window.getWidth()) * 100) + '%';
		crystalImg = new Element('img', {'src': this.src, 'styles': {
			'left': styleLeft,
			'position': 'absolute',
			'right': '10px',
			'top': $(document.body).getElement('div[class=contentLineFoot]').getTop() - 183, 
			'z-index': '999'
		}}).inject($(document.body));
		
		if(window.ie6) 
		{
			crystalImg.setStyle('behavior', 'url(./_scripts/_pngfix/behavior.htc)');
			(function(){crystalImg.setStyle('top', $(document.body).getElement('div[class=contentLineFoot]').getTop() - 183);}).delay(500);
		}
	};

	crystal.src = './_templates/_ipfg/_images/hpDiamond.png';
});