$(document).ready(function() {
	if (navigator.appVersion.match(/MSIE [0-6]\./)) {
		$('*').each(function () {
			  if (this.currentStyle.backgroundImage != 'none') {
				src = this.currentStyle.backgroundImage.match(/url\("(.+\.png)"\)/);
			    if (src) {
			        src = src[1]; 
				    $(this).css({'backgroundImage': 'none', 'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='" + src + "')"});
				 }
			  }
		});
		$('IMG').each(function () {
			if (this.src.indexOf(".png")>0) {
		        src = this.src; 
		        this.src = RootAddress + 'images/spacer.gif';
			    $(this).css({'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='" + src + "')"});
			 }
		});
	}
//	$("IMG.imageZone").each(function() { $(this).rotate(10-20*Math.random()) });//.mouseover(function(){ $(this).rotateAnimation(45); }).mouseout(function(){ $(this).rotateAnimation(-45); });
    $("DIV",".catmenu").children("A").each(function() { this.style.background = "url("+RootAddress+"images/capt"+((this.className=="b") ? "b" : "")+Math.round(1+2*Math.random())+".jpg) no-repeat center left" });
});