/* img1=new image();
img1.src="index-pics/index_33-over.jpg";
img2=new image();
img2.src="index-pics/index_35-over.jpg";
img3=new image();
img3.src="index-pics/index_37-over.jpg";
img4=new image();
img4.src="index-pics/index_39-over.jpg";
img5=new image();
img5.src="index-pics/index_41-over.jpg";
img6=new image();
img6.src="index-pics/index_43-over.jpg"; */

function over (name) {
document[name].src='index-pics/' + [name] +'-over.jpg'
}
function out (name) {
document[name].src='index-pics/' + [name] +'.jpg'
}
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",150)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=60
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}