// JavaScript Document
ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));

function msover(){
	if (ie4){
  		event.srcElement.style.color="white";
  		event.srcElement.style.cursor = "hand";
  	}
}

function msout(){
	if (ie4){
  		event.srcElement.style.color="black";
  		event.srcElement.style.cursor = "auto";
  	}
}

function mainmsover(){
	if (ie4){
  		event.srcElement.style.color="#FFD861";
  		event.srcElement.style.cursor = "hand";
  	}

}

function mainmsout(){
	if (ie4){
  		event.srcElement.style.color="black";
  		event.srcElement.style.cursor = "auto";
  	}
}

