	// Fix PNGs in IE6
function jceFixPNG(eltArray,method) {
	if (navigator.appVersion.match(/MSIE [0-6]\./)) {
		
		$(eltArray).each(function () {
			
				// Background images.
			if ($(this).css('background-image') != 'none') {
				var image = $(this).css('background-image');
				image = this.currentStyle.backgroundImage.substring(5,image.length - 2);
				$(this).css({
					'backgroundImage': 'none',
					'filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=" + method + ", src='" + image + "')"
				});
			}
			
				// Image tags.
			if ($(this).filter('img').length) {
				var image = $(this).attr('src') ;
				if (image.substr(image.length-3,3) == 'png') {
					$(this).attr('src','/images/site/blank.gif').css({
						'backgroundImage': 'none',
						'filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=" + method + ", src='" + image + "')"
					});
				}
			}
		});
	}
}