$.fn.pngFix = function()
{
	if (!$.browser.msie || $.browser.version >= 9)
	{
		return $(this);
	}

	return $(this).each(function()
	{
		$(this).css('filter', "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='" + $(this).attr('src') + "')");
	});
};

$(function()
{
	$('img').pngFix();
})
