function RolloverSrc() {if (!document.getElementById) return;var aPreLoad = new Array();var sTempSrc;var aImages = document.getElementsByTagName('img');for (var i = 0; i < aImages.length; i++) {		if (aImages[i].className == 'ov') {var src = aImages[i].getAttribute('src');var ftype = src.substring(src.lastIndexOf('.'), src.length);var hsrc = src.replace(ftype, '_o'+ftype);aImages[i].setAttribute('hsrc', hsrc);aPreLoad[i] = new Image();aPreLoad[i].src = hsrc;aImages[i].onmouseover = function() {sTempSrc = this.getAttribute('src');this.setAttribute('src', this.getAttribute('hsrc'));}	aImages[i].onmouseout = function() {if (!sTempSrc) sTempSrc = this.getAttribute('src').replace('_o'+ftype, ftype);this.setAttribute('src', sTempSrc);}}}}window.onload = RolloverSrc;$(function() {//highlight@+1 as file_namefunction highlight(num){var thisPage =$('ul.cat'+(num)+' li a img');$(thisPage).eq(num).attr('src', '../images/navi'+(num+1)+'_o.gif');$(thisPage).eq(num).removeClass('ov');if(num == 0){$(thisPage).eq(num).attr('src', './images/navi'+(num+1)+'_o.gif');$(thisPage).eq(num).removeClass('ov');}}for(i=0; i<7 ; i++){highlight(i);}//bottom in top$("div.boxes.news p:last,div.boxes.news p:eq(1),div.boxes.mid p:last,div.boxes p:last").css('border-bottom','0px');//td global$('table.history td:last').css('border-bottom','0px');$('table.history td:last').prev().css('border-bottom','0px');});
