document.write("") function jumpMenu(targ,selObj,restore){ eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); if (restore) selObj.selectedIndex=0; } function seltab(bpref, hpref, id_max, selected) { if (! document.getElementById) return; for (var i = 0; i <= id_max; i++) { if (! document.getElementById(bpref + i)) continue; if (i == selected) { document.getElementById(bpref + i).style.visibility = "visible"; document.getElementById(bpref + i).style.position = ""; document.getElementById(hpref + i).className = "open"; } else { document.getElementById(bpref + i).style.visibility = "hidden"; document.getElementById(bpref + i).style.position = "absolute"; document.getElementById(hpref + i).className = "close"; } } } //ALPHA HOVER $(document).ready(function(){ $("img.alphahover").fadeTo(0,0.99); $("img.alphahover").hover(function(){ $(this).fadeTo(150,0.7); }, function(){ $(this).fadeTo(300,1); }); });