$(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 + ''+DocumentRoot+'images/spacer.gif';
			    $(this).css({'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='" + src + "')"});
			 }
		});
	}
	$('#MainMenu TD')
		.each(function(){ var obj = $("SPAN",this); if(obj) $(this)
			  .mouseover(function(){ var obj = $("SPAN",this); $(obj[0]).show(); })
			  .mouseout (function(){ var obj = $("SPAN",this); $(obj[0]).hide(); });
		});
	$('.ds').dropShadow({left: 4, top: 5, opacity: 0.3, blur: 0});
	$('.line').dropShadow({left:0, bottom: 1, top: 1, opacity: 0.8, blur: 0});
	$('INPUT').blur(function(){ changeText(this,this.alt,0) }).focus(function(){ changeText(this,this.alt,1) });
});