if (navigator.appVersion.indexOf("MSIE") != -1){
	var pStart = navigator.appVersion.indexOf("MSIE");
	var IEversion= parseInt(navigator.appVersion.charAt(pStart + 5));
		if (IEversion >= 4){
		document.write("<style>");
		document.write("a:hover {color: #ff0000;}");
		document.write(" .navigation a:hover{color: #330000; text-decoration: underline;}");
		document.write(" .navigation a.current:hover{color: #CC9900;	text-decoration: underline;}");
		document.write(" .gallery a:hover{color: #CC0033; text-decoration: underline;}");
		document.write("</style>")
	}
}