/***************************************************************************
*                            Barracuda Collaborative Directory Software
*                              -----------------
*     begin                : Mon Mar 23 2006
*     copyright            : (C) 2006 BoonEx Group
*     website              : http://www.boonex.com
* This file is part of Barracuda - Collaborative Directory Software
*
* Barracuda is free software; you can redistribute it and/or modify it under 
* the terms of the GNU General Public License as published by the 
* Free Software Foundation; either version 2 of the 
* License, or  any later version.      
*
* Barracuda is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. 
* You should have received a copy of the GNU General Public License along with Barracuda, 
* see license.txt file; if not, write to marketing@boonex.com
***************************************************************************/

var realSrc='';
var imgs = document.getElementsByTagName('img');

function changePNGImages()
{
	var supported = /MSIE/.test(navigator.userAgent) && !(/opera/i).test(navigator.userAgent) && navigator.platform == "Win32";
	if ( supported )
	{
		for (var i = 0; i < imgs.length; i++)
		{
			realSrc = imgs[i].src;
			if ( /\.png$/.test( realSrc.toLowerCase()) ) fixImage(imgs[i]);
		}
	}
}

function fixImage(element) {
   // get src
	var src = element.src;   
	var height = element.height;
	var width = element.width;

	// set blank image
	element.src = blankSrc;
	// moi modifikatsii
	element.style.width = width;
	element.style.height = height;
	// set filter
	element.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" +
								 realSrc + "',sizingMethod='scale')";
}