// JavaScript Document


var ie  =(document.all)?1:0;
 
sfH = function() {
	if(ie) {
		document.getElementById("dropholder").onmouseover=function() {
				this.className+=" sfhover";
			}
		document.getElementById("dropholder").onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		
		document.getElementById("dropholder2").onmouseover=function() {
				this.className+=" sfhover";
			}
		document.getElementById("dropholder2").onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
			
		document.getElementById("dropholder3").onmouseover=function() {
				this.className+=" sfhover";
			}
		document.getElementById("dropholder3").onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}	
	}
}
